Browse Source

Lesson 03 Final

Ryan Florence 9 năm trước cách đây
mục cha
commit
6ad2491a6c
1 tập tin đã thay đổi với 10 bổ sung1 xóa
  1. 10 1
      modules/App.js

+ 10 - 1
modules/App.js

@@ -1,8 +1,17 @@
 import React from 'react'
+import { Link } from 'react-router'
 
 export default React.createClass({
   render() {
-    return <div>Hello, React Router!</div>
+    return (
+      <div>
+        <h1>React Router Tutorial</h1>
+        <ul role="nav">
+          <li><Link to="/about">About</Link></li>
+          <li><Link to="/repos">Repos</Link></li>
+        </ul>
+      </div>
+    )
   }
 })