Skip to content

Instantly share code, notes, and snippets.

@vtno
Created February 1, 2016 20:14
Show Gist options
  • Save vtno/5161cdfc182b45b99f62 to your computer and use it in GitHub Desktop.
Save vtno/5161cdfc182b45b99f62 to your computer and use it in GitHub Desktop.
var Comment = React.createClass({
render: function(){
return(
<div className="comment">
<h2 className="commentAuthor">
{this.props.author}
</h2>
{this.props.children}
</div>
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment