Przeglądaj źródła

Add import statement from various PRs

Tim Dorr 9 lat temu
rodzic
commit
5a4ef9901b
1 zmienionych plików z 4 dodań i 0 usunięć
  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>
 ```