aboutsummaryrefslogtreecommitdiffstats
path: root/web/src/vendor/react-router/docs/api/components/DefaultRoute.md
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/vendor/react-router/docs/api/components/DefaultRoute.md')
-rw-r--r--web/src/vendor/react-router/docs/api/components/DefaultRoute.md55
1 files changed, 0 insertions, 55 deletions
diff --git a/web/src/vendor/react-router/docs/api/components/DefaultRoute.md b/web/src/vendor/react-router/docs/api/components/DefaultRoute.md
deleted file mode 100644
index 6607832b..00000000
--- a/web/src/vendor/react-router/docs/api/components/DefaultRoute.md
+++ /dev/null
@@ -1,55 +0,0 @@
-API: `DefaultRoute` (component)
-===============================
-
-A route that is active when the parent route's path matches exactly. Or,
-in other words, the default child route for a parent.
-
-Note, this is not a `NotFoundRoute`. It is only active when the parent's
-route path is matched exactly.
-
-Props
------
-
-See [Route::props][routeProps]
-
-Example
--------
-
-```xml
-<Routes>
- <Route path="/" handler={App}>
-
- <!--
- when the url is `/`, this handler will be active, or in other
- words, will be `this.props.activeRouteHandler in the `App` handler
- -->
- <DefaultRoute handler={Home}/>
-
- <Route name="about" handler={About}/>
- <Route name="users" handler={Users}>
- <Route name="user" handler={User} path="/user/:id"/>
-
- <!-- when the url is `/users`, this will be active -->
- <DefaultRoute handler={UsersIndex}/>
-
- </Route>
- </Route>
-</Routes>
-```
-
-This is all really just a shortcut for the less intuitive version of the
-same functionality:
-
-```xml
-<!-- no path or name on what was previously the "users" route -->
-<Route handler={Users}>
- <!-- the path moved down to the child -->
- <Route name="users-index" path="/users" handler={UsersIndex}/>
- <Route name="user" handler={User} path="/user/:id"/>
-</Route>
-```
-
-`DefaultRoute` feels more natural, so you can name and transition to the
-parent route.
-
- [routeProps]:/docs/api/components/Route.md#props