var HELLO_COMPONENT = ` var HelloMessage = React.createClass({ render: function() { return
Hello {this.props.name}
; } }); ReactDOM.render(, mountNode); `; ReactDOM.render( , document.getElementById('helloExample') );