React.js model

// tutorial1.js
var CommentBox = React.createClass({
  render: function() {
    return (
      <div className="commentBox">
        Hello, world! I am a CommentBox.
      </div>
    );
  }
});
React.render(
  <CommentBox />,
  document.getElementById('content')
);

posted on 2015-10-19 10:34  rojas  阅读(362)  评论(0编辑  收藏  举报