Skip to content

Instantly share code, notes, and snippets.

@jayontraps
Last active October 28, 2015 21:23
Show Gist options
  • Save jayontraps/f695c2a4cedb9fdf1a87 to your computer and use it in GitHub Desktop.
Save jayontraps/f695c2a4cedb9fdf1a87 to your computer and use it in GitHub Desktop.
React.createClass()
var Helloworld = React.createClass({
render: function() {
return (
<div>Hello Wold</div>
);
}
});
ReactDOM.render(<Helloworld />, document.body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment