Skip to content

Instantly share code, notes, and snippets.

@renanccastro
Created July 5, 2016 03:50
Show Gist options
  • Save renanccastro/92071006f0fedef4f5f46b3d3734553f to your computer and use it in GitHub Desktop.
Save renanccastro/92071006f0fedef4f5f46b3d3734553f to your computer and use it in GitHub Desktop.
var HelloMessage = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
}
});
ReactDOM.render(<HelloMessage name="John" />, mountNode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment