Skip to content

Instantly share code, notes, and snippets.

@loopDelicious
Last active August 12, 2016 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save loopDelicious/2e29812a1feb995af2efdc3720dd9b72 to your computer and use it in GitHub Desktop.
Save loopDelicious/2e29812a1feb995af2efdc3720dd9b72 to your computer and use it in GitHub Desktop.
var React = require('react');
var ReactDOM = require('react-dom');
var Main = React.createClass({
render: function() {
return (
<div>
Hello World
</div>
)
}
});
ReactDOM.render(<Main />, document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment