Skip to content

Instantly share code, notes, and snippets.

@Chryus
Last active December 29, 2016 15:56
Show Gist options
  • Save Chryus/6694f56ee0981ebedb54476d7f72d693 to your computer and use it in GitHub Desktop.
Save Chryus/6694f56ee0981ebedb54476d7f72d693 to your computer and use it in GitHub Desktop.
var React = require('react');
var ReactDOM = require('react-dom');
var HelloWorld = React.createClass({
render: function () {
return (
<div>
<h1>Hello React!</h1>
</div>
)
}
});
ReactDOM.render(
<HelloWorld />,
document.getElementById("app")
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment