Skip to content

Instantly share code, notes, and snippets.

@vtno
Last active February 1, 2016 19:17
Show Gist options
  • Save vtno/ca0cb4913560696b9c68 to your computer and use it in GitHub Desktop.
Save vtno/ca0cb4913560696b9c68 to your computer and use it in GitHub Desktop.
Real Time Comment
<div class = "content"></div>
<script type = "text/babel">
var CommentBox = React.createClass({
render: function(){
return (
<div className=”commentBox”>
Yo! I’m a comment box.
</div>
);
}
});
ReactDOM.render(
<CommentBox />,
document.getElementById(‘content’)
);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment