Skip to content

Instantly share code, notes, and snippets.

@LBRapid
Created April 21, 2014 17:02
Show Gist options
  • Save LBRapid/11148891 to your computer and use it in GitHub Desktop.
Save LBRapid/11148891 to your computer and use it in GitHub Desktop.
React component with JSX
var CommentBox = React.createClass({
render: function() {
return (
<div className="commentBox">
Hello, world! I am a CommentBox.
</div>
);
}
});
React.renderComponent(
<CommentBox />,
document.getElementById('content')
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment