Skip to content

Instantly share code, notes, and snippets.

@ryanflorence
Last active August 29, 2015 14:16
Show Gist options
  • Save ryanflorence/213cea9e72e946b741c6 to your computer and use it in GitHub Desktop.
Save ryanflorence/213cea9e72e946b741c6 to your computer and use it in GitHub Desktop.
var Thing = React.createClass({
render () {
return (
<div>
{stuff.map(thing => ( // <-- use ( not {
<OtherThing thing={thing}/>
))}
</div>
);
}
});
@Strajk
Copy link

Strajk commented May 8, 2015

Clever, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment