Skip to content

Instantly share code, notes, and snippets.

@codeaholicguy
Created March 1, 2016 05:01
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 codeaholicguy/32067b4455d69cdd24eb to your computer and use it in GitHub Desktop.
Save codeaholicguy/32067b4455d69cdd24eb to your computer and use it in GitHub Desktop.
var Form = React.createClass({
render: function(){
return (
<div>
<h3>Click the button</h3>
<input type="submit" />
</div>
);
}
});
var App = React.createClass({
render: function(){
return (
<div>
<h1> Welcome to my app!</h1>
<Form />
</div>
);
}
});
React.render(<App />, document.getElementById("app"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment