Files
react/js/examples/hello.js
T
Paul O’Shannessy 654b347d58 v0.12.0
2014-10-28 11:36:52 -07:00

15 lines
349 B
JavaScript

var HELLO_COMPONENT = ("\nvar HelloMessage = React.createClass({\n render: function() {\n return <div>Hello {this.props.name}</div>;\n }\n});\n\nReact.render(<HelloMessage name=\"John\" />, mountNode);\n"
);
React.render(
React.createElement(ReactPlayground, {codeText: HELLO_COMPONENT}),
document.getElementById('helloExample')
);