Skip to content

Instantly share code, notes, and snippets.

@jide
Last active March 17, 2017 00:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jide/a9fe38699b1621111e627cc4e416c912 to your computer and use it in GitHub Desktop.
Save jide/a9fe38699b1621111e627cc4e416c912 to your computer and use it in GitHub Desktop.
const Block = ({ x, width, title, subtitle }) =>
<div style={{ left: x, width }}>
<div style={{ color: width > 100 ? 'red' : 'green' }}>{ title }</div>
<div>{ subtitle }</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment