Browse Source

Lesson 05 Final

Ryan Florence 9 năm trước cách đây
mục cha
commit
82cc8a6897
4 tập tin đã thay đổi với 18 bổ sung3 xóa
  1. 4 0
      index.css
  2. 1 0
      index.html
  3. 3 3
      modules/App.js
  4. 10 0
      modules/NavLink.js

+ 4 - 0
index.css

@@ -0,0 +1,4 @@
+.active {
+  color: green;
+}
+

+ 1 - 0
index.html

@@ -2,6 +2,7 @@
 <html>
 <meta charset=utf-8/>
 <title>My First React Router App</title>
+<link rel=stylesheet href=index.css>
 <div id=app></div>
 <script src="bundle.js"></script>
 

+ 3 - 3
modules/App.js

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

+ 10 - 0
modules/NavLink.js

@@ -0,0 +1,10 @@
+// modules/NavLink.js
+import React from 'react'
+import { Link } from 'react-router'
+
+export default React.createClass({
+  render() {
+    return <Link {...this.props} activeClassName="active"/>
+  }
+})
+