Skip to content

Instantly share code, notes, and snippets.

@DveMac
Created February 5, 2014 12:47
Show Gist options
  • Save DveMac/8822889 to your computer and use it in GitHub Desktop.
Save DveMac/8822889 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