Echo JS 0.11.0

<~>
tracker1 1957 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 1955 days ago. link 1 point
Thank you!
I'll try to think about it again :)