tutorial.js 256 B

1234567891011121314
  1. let CommentBox = React.createClass({
  2. render: function () {
  3. return (
  4. <div className="commentBox">
  5. Hello, world: I am a CommentBox.
  6. </div>
  7. );
  8. }
  9. });
  10. ReactDOM.render(
  11. <CommentBox />,
  12. document.getElementById("content")
  13. );