Skip to content

Instantly share code, notes, and snippets.

@vtno
Last active February 1, 2016 19:23
Show Gist options
  • Save vtno/d884a8ee9b3a254532df to your computer and use it in GitHub Desktop.
Save vtno/d884a8ee9b3a254532df to your computer and use it in GitHub Desktop.
Real Time Comment
var CommentList = React.createClass({
render: function() {
return (
<div className="commentList">
Test Test I'm a CommentList.
</div>
);
}
});
var CommentForm = React.createClass({
render: function() {
return (
<div className="commentForm">
Test Test I'm a CommentForm.
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment