tutorial.js 199 B

1234567891011
  1. let CommentBox = React.createClass({
  2. render: function () {
  3. "use strict";
  4. return (
  5. <div className="commentBox">
  6. Hello, world: I am a CommentBox.
  7. </div>
  8. );
  9. }
  10. });