Skip to content

Instantly share code, notes, and snippets.

@mwhagedorn
Created September 12, 2016 16:00
Show Gist options
  • Save mwhagedorn/4967902af9f250bdd2a7181bd3c9f219 to your computer and use it in GitHub Desktop.
Save mwhagedorn/4967902af9f250bdd2a7181bd3c9f219 to your computer and use it in GitHub Desktop.
errant file in react tutorial
var React = require('react');
var ReactDOM = require('react-dom');
var HelloWorld = React.createClass({
render: function() {
return (
<div>Hello World</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