Skip to content

Instantly share code, notes, and snippets.

@shovon
Created January 20, 2015 17:49
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 shovon/a7861f52d6367785d940 to your computer and use it in GitHub Desktop.
Save shovon/a7861f52d6367785d940 to your computer and use it in GitHub Desktop.
var React = require('react');
var HelloMessage = React.createClass({
render: function () {
return <div>Hello {this.props.name}</div>
}
});
React.render(<HelloMessage name='Jane' />, document.body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment