Skip to content

Commit f0693f5

Browse files
committed
docs: wip message
1 parent 26e8b8e commit f0693f5

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

docs/getting-started/overview.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ order: 1
55

66
# Feature Overview
77

8+
<docs-info>This doc is a WIP</docs-info>
9+
810
## Client Side Routing
911

1012
React Router enables "client side routing".
@@ -15,7 +17,7 @@ Client side routing allows your app to update the URL from a link click without
1517

1618
This enables faster user experiences because the browser doesn't need to request an entirely new document or re-evaluate CSS and JavaScript assets for the next page. It also enables more dynamic user experiences with things like animation.
1719

18-
Client side routing is enabled by rendering a `Router` and linking to pages with `Link`:
20+
Client side routing is enabled by rendering a `Router` and linking/submitting to pages with `Link` and `<Form>`:
1921

2022
```jsx [10,16]
2123
import React from "react";
@@ -44,22 +46,18 @@ createRoot(document.getElementById("root")).render(
4446

4547
## Nested Routes
4648

47-
React Router's nested routes were inspired by the routing system in Ember.js circa 2014. The Ember team realized nearly every time you had nested URLs, you also had nested UI layouts, and each layout had its own data dependencies. React Router embraces that convention, too.
48-
49-
A "nested URL" is a URL with multiple segments (the stuff between the `/`):
50-
51-
```
52-
https://example.com/projects/145242/documents/826247
53-
```
54-
55-
This URL has
49+
Nested Routing is the general idea of coupling segments of the URL to component hierarchy and data. React Router's nested routes were inspired by the routing system in Ember.js circa 2014. The Ember team realized that in nearly every case, segments of the URL determine:
5650

5751
- The layouts to render on the page
5852
- The code split JavaScript bundles to load
5953
- The data dependencies of those layouts
6054

55+
This [visualization](https://remix.run/_docs/routing) might be helpful.
56+
6157
## Dynamic Segments
6258

59+
## Ranked Route Matching
60+
6361
## Active Links
6462

6563
## Relative Links

0 commit comments

Comments
 (0)