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