Echo JS 0.11.0

<~>
[deleted news]
tracker1 2016 days ago. link parent 2 points
Two biggest reasons, I like the syntax, and using object de/structuring...

    export default ({ foo, children }) => (
      <div className={classNames(
        'some-component', 
        { foo }
      )}>
        {children}
      </div>
    );

Replies

TroyTae 2014 days ago. link 1 point
Thank you!
I'll try to think about it again :)