Skip to content

Instantly share code, notes, and snippets.

@vtno
Created February 1, 2016 19:18
Show Gist options
  • Save vtno/466627d01f5cc4807ad8 to your computer and use it in GitHub Desktop.
Save vtno/466627d01f5cc4807ad8 to your computer and use it in GitHub Desktop.
var CommentBox = React.createClass({
render: function(){
return (
<div className="commentBox">
<h1>Comments</h1>
<CommentList />
<CommentForm />
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment