6
6
7
7
A complete routing library for React. https://rackt.github.io/react-router
8
8
9
- React Router keeps the URL in sync with nested UI . It has a simple API
9
+ React Router keeps your UI in sync with the URL . It has a simple API
10
10
with powerful features like lazy code loading, dynamic route matching,
11
11
and location transition handling built right in. Make the URL your first
12
12
thought, not an after-thought.
@@ -22,7 +22,7 @@ Docs & Help
22
22
Browser Support
23
23
---------------
24
24
25
- We intend to support all the browers React supports .
25
+ We support all browsers and environments where React runs .
26
26
27
27
Installation
28
28
------------
@@ -43,18 +43,19 @@ import { Router, Route, Link } from 'react-router';
43
43
var ReactRouter = require (' react-router' );
44
44
var Router = ReactRouter .Router ;
45
45
var Route = ReactRouter .Route ;
46
+ var Link = ReactRouter .Link ;
46
47
```
47
48
48
- There's also a ` dist/ ` folder containing a UMD version.
49
+ There's also a ` lib/umd ` folder containing a UMD version.
49
50
50
51
### bower + who knows what
51
52
52
53
``` sh
53
54
bower install react-router
54
55
```
55
56
56
- Find the UMD/global build in ` dist/ ` , and the library on
57
- ` window.ReactRouter ` . Best of luck to you.
57
+ Find the UMD/global build in ` lib/umd ` , and the library on
58
+ ` window.ReactRouter ` . Best of luck to you. :)
58
59
59
60
### CDN
60
61
0 commit comments