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