Skip to content

Instantly share code, notes, and snippets.

@dennishall1
Last active March 31, 2016 15:19
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 dennishall1/f4a503bdf3e9f59675c8c0e3a6e8d677 to your computer and use it in GitHub Desktop.
Save dennishall1/f4a503bdf3e9f59675c8c0e3a6e8d677 to your computer and use it in GitHub Desktop.
A Simple Component
var HelloMessage = React.createClass({
render: function() {
return <div>Hello, {this.props.subject}</div>;
}
});
ReactDOM.render(<HelloMessage subject="World" />, mountNode);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment