ソースを参照

Listing 4: using props.

Frederic G. MARAND 8 年 前
コミット
c5ef09183f
1 ファイル変更13 行追加0 行削除
  1. 13 0
      public/scripts/tutorial.js

+ 13 - 0
public/scripts/tutorial.js

@@ -1,3 +1,16 @@
+let Comment = React.createClass({
+  render: function () {
+    return (
+      <div className="comment">
+        <h2 className="commentAuthor">
+          {this.props.author}
+        </h2>
+        {this.props.children}
+      </div>
+    );
+  }
+});
+
 let CommentList = React.createClass({
   render: function () {
     return (