瀏覽代碼

Listing 1: first component, CommentBox.

Frederic G. MARAND 8 年之前
父節點
當前提交
c173d1e1ec
共有 2 個文件被更改,包括 6 次插入2 次删除
  1. 1 0
      .eslintrc.js
  2. 5 2
      public/scripts/tutorial.js

+ 1 - 0
.eslintrc.js

@@ -9,6 +9,7 @@ module.exports = {
   "globals": {
     "jQuery": true,
     "React": true,
+    "ReactDOM": true
   },
 
   "plugins": ["react"],

+ 5 - 2
public/scripts/tutorial.js

@@ -1,7 +1,5 @@
 let CommentBox = React.createClass({
   render: function () {
-    "use strict";
-
     return (
       <div className="commentBox">
         Hello, world: I am a CommentBox.
@@ -9,3 +7,8 @@ let CommentBox = React.createClass({
     );
   }
 });
+
+ReactDOM.render(
+  <CommentBox />,
+  document.getElementById("content")
+);