소스 검색

Listing 8: Hook up the data model step1: data out of the component.

Frederic G. MARAND 8 년 전
부모
커밋
88eb2bb7c9
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      public/scripts/tutorial.js

+ 5 - 0
public/scripts/tutorial.js

@@ -1,3 +1,8 @@
+let data = [
+  { id: 1, author: "Pete Hunt", text: "This is one comment" },
+  { id: 2, author: "Jordan Walke", text: "This is *another* comment" }
+];
+
 let Comment = React.createClass({
   rawMarkup: function () {
     let rawMarkup = marked(this.props.children.toString(), { sanitize: true });