Skip to content

Instantly share code, notes, and snippets.

@insin
Created January 25, 2015 20:28
Show Gist options
  • Save insin/0d8cb25586c089528a32 to your computer and use it in GitHub Desktop.
Save insin/0d8cb25586c089528a32 to your computer and use it in GitHub Desktop.
var CommentList = React.createClass({
render() {
return <div className="commentList">
{this.props.data.map(comment => <Comment author={comment.author}>
{comment.text}
</Comment>)}
</div>
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment