File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ With React Router
134
134
Here's how it works:
135
135
136
136
1 . You declare your view hierarchy with nested ` <Route/> ` s and provide
137
- them with a React element to handle the route when its active.
137
+ them with a React element to handle the route when it's active.
138
138
139
139
2 . React Router will match the deepest route against the URL, and then
140
140
activate the entire tree of routes on that branch, nesting all the
@@ -189,7 +189,7 @@ When the user lands at `/inbox`, the route named `inbox` gets matched so
189
189
its parent route, ` app ` , is also matched. The ` run ` callback receives
190
190
` Handler ` , that has all of this match information wrapped up in it.
191
191
192
- Rendering ` Handler ` is really just rendering ` App ` since its the highest
192
+ Rendering ` Handler ` is really just rendering ` App ` since it's the highest
193
193
matched route handler. Since ` inbox ` is the active child route,
194
194
rendering ` <RouteHandler/> ` in ` App ` renders the ` Inbox ` element.
195
195
` <RouteHandler/> ` is nearly identical to ` {{outlet}} ` from Ember or
You can’t perform that action at this time.
0 commit comments