Skip to content

Instantly share code, notes, and snippets.

@jordwalke
Forked from nelix/render.js
Last active August 29, 2015 13:56
Show Gist options
  • Save jordwalke/9298177 to your computer and use it in GitHub Desktop.
Save jordwalke/9298177 to your computer and use it in GitHub Desktop.
var items = this.props.showThings ? this.props.items : [];
return (
<ul>
{items.map(thing => <li>{thing}</li>)}
</ul>
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment