Files
react/js/examples/hello.js
T
Paul O’Shannessy 853784bc3f revert js
2016-03-21 18:05:21 -07:00

5 lines
353 B
JavaScript

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