Skip to content

Instantly share code, notes, and snippets.

@zacechola
Created May 14, 2015 18:45
Show Gist options
  • Save zacechola/cd7840bd8bf28be34206 to your computer and use it in GitHub Desktop.
Save zacechola/cd7840bd8bf28be34206 to your computer and use it in GitHub Desktop.
var React = require('react')
var Hello = React.createClass({
displayName: 'Hello',
render: function() {
return <div>Hello, {this.props.name}</div>
}
})
React.render(<Hello name="World" />, document.body)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment