react/docs/_js/examples/hello.js

15 lines
310 B
JavaScript
Raw Normal View History

var HELLO_COMPONENT = `
var HelloMessage = React.createClass({
render: function() {
return <div>Hello {this.props.name}</div>;
}
});
React.render(<HelloMessage name="John" />, mountNode);
`;
2013-05-30 03:46:11 +08:00
React.render(
2013-05-30 03:46:11 +08:00
<ReactPlayground codeText={HELLO_COMPONENT} />,
document.getElementById('helloExample')
);