let CommentBox = React.createClass({ render: function () { return (
Hello, world: I am a CommentBox.
); } }); ReactDOM.render( , document.getElementById("content") );