소스 검색

Add import statement from various PRs

Tim Dorr 9 년 전
부모
커밋
5a4ef9901b
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      lessons/09-index-links/README.md

+ 4 - 0
lessons/09-index-links/README.md

@@ -26,6 +26,10 @@ index route is rendered.
 First lets use the `IndexLink`
 
 ```js
+// App.js
+import { IndexLink, Link } from 'react-router'
+
+// ...
 <li><IndexLink to="/" activeClassName="active">Home</IndexLink></li>
 ```