瀏覽代碼

Lesson 03 Final

Ryan Florence 9 年之前
父節點
當前提交
6ad2491a6c
共有 1 個文件被更改,包括 10 次插入1 次删除
  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>
+    )
   }
 })