Skip to content

Instantly share code, notes, and snippets.

@dhruvarora
Created June 9, 2015 23:56
Show Gist options
  • Save dhruvarora/b48246aa795279ca9c42 to your computer and use it in GitHub Desktop.
Save dhruvarora/b48246aa795279ca9c42 to your computer and use it in GitHub Desktop.
var HelloWorld = React.createClass({
render: function(){
return (
<div>
Hello World!
</div>
)
}
});
React.render(<HelloWorld />, document.getElementById('app'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment