Skip to content

Commit 217a600

Browse files
committed
more website work
- fixed all the links - listed all the api on each environment screen - probably other stuff
1 parent ab47ece commit 217a600

35 files changed

+147
-36
lines changed

packages/react-router-dom/docs/api/BrowserRouter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# <BrowserRouter>
22

3-
A [`<Router>`](../../react-router/docs/Router.md) that uses the HTML5 history API (`pushState`, `replaceState` and the `popstate` event) to keep your UI in sync with the URL.
3+
A [`<Router>`](../../../react-router/docs/api/Router.md) that uses the HTML5 history API (`pushState`, `replaceState` and the `popstate` event) to keep your UI in sync with the URL.
44

55
```js
66
import { BrowserRouter } from 'react-router-dom'

packages/react-router-dom/docs/api/HashRouter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# &lt;HashRouter>
22

3-
A [`<Router>`](../../react-router/docs/Router.md) that uses the hash portion of the URL (i.e. `window.location.hash`) to keep your UI in sync with the URL.
3+
A [`<Router>`](../../../react-router/docs/api/Router.md) that uses the hash portion of the URL (i.e. `window.location.hash`) to keep your UI in sync with the URL.
44

55
**IMPORTANT NOTE:** Hash history does not support `location.key` or `location.state`. In previous versions we attempted to shim the behavior but there were edge-cases we couldn't solve. Any code or plugin that needs this behavior won't work. As this technique is only intended to support legacy browsers, we encourage you to configure your server to work with `<BrowserHistory>` instead.
66

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# &lt;MemoryRouter>
2+
3+
Re-exported from core [`MemoryRouter`](../../../react-router/docs/api/MemoryRouter.md)

packages/react-router-dom/docs/api/NavLink.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ When `true`, the active class/style will only be applied if the location is matc
4747

4848
## strict: bool
4949

50-
When `true`, the trailing slash on a location's `pathname` will be taken into consideration when determining if the location matches the current URL. See the [`<Route strict>`](../../react-router/docs/Route.md#strict-bool) documentation for more information.
50+
When `true`, the trailing slash on a location's `pathname` will be taken into consideration when determining if the location matches the current URL. See the [`<Route strict>`](../../../react-router/docs/api/Route.md#strict-bool) documentation for more information.
5151

5252
```js
5353
<NavLink
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# &lt;Prompt>
2+
3+
TODO
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# &lt;Redirect>
2+
3+
Re-exported from core [`Redirect`](../../../react-router/docs/api/Redirect.md)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# &lt;Route>
2+
3+
Re-exported from core [`Route`](../../../react-router/docs/api/Route.md)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# &lt;Router>
2+
3+
Re-exported from core [`Router`](../../../react-router/docs/api/Router.md)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# &lt;StaticRouter>
2+
3+
Re-exported from core [`StaticRouter`](../../../react-router/docs/api/StaticRouter.md)
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# &lt;Switch>
2+
3+
Re-exported from core [`Switch`](../../../react-router/docs/api/Switch.md)

0 commit comments

Comments
 (0)