Skip to content

Instantly share code, notes, and snippets.

@chrisbodhi
Created March 1, 2015 21:10
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 chrisbodhi/354b57385d9c6834d050 to your computer and use it in GitHub Desktop.
Save chrisbodhi/354b57385d9c6834d050 to your computer and use it in GitHub Desktop.
var Deck = React.createClass({
render: function() {
var cardList = this.props.data.map(function (card) {
return (
<Card data={card} />
);
});
return (
<div className="deck">
{cardList}
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment