mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
15 lines
349 B
JavaScript
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')
|
|
);
|