@@ -36,7 +36,7 @@ Without React Router
36
36
--------------------
37
37
38
38
Without this router, you'd share that UI by repeating render code across
39
- your views, probably with a ` <Header/> ` component :
39
+ your views, probably with a ` <Header/> ` element :
40
40
41
41
``` js
42
42
var Header = React .createClass ({
@@ -184,7 +184,7 @@ its parent route, `app`, is also matched. The `run` callback receives
184
184
185
185
Rendering ` Handler ` is really just rendering ` App ` since its the highest
186
186
matched route handler. Since ` inbox ` is the active child route,
187
- rendering ` <RouteHandler/> ` in ` App ` renders the ` Inbox ` component .
187
+ rendering ` <RouteHandler/> ` in ` App ` renders the ` Inbox ` element .
188
188
` <RouteHandler/> ` is nearly identical to ` {{outlet}} ` from Ember or
189
189
` <div ng-view/> ` from angular.
190
190
@@ -196,7 +196,7 @@ notices that it has a `DefaultRoute`, so `Dashboard` becomes the new
196
196
` <RouteHandler/> ` . If a ` DefaultRoute ` is defined, it will be active
197
197
when the parent's route is matched exactly.
198
198
199
- Note that we don't need the ` <Header/> ` component since we don't have to
199
+ Note that we don't need the ` <Header/> ` element since we don't have to
200
200
repeat it anymore. React Router shares that UI for us from one place.
201
201
202
202
More Nesting
@@ -365,7 +365,7 @@ Bells and Whistles
365
365
366
366
### ` <Link/> `
367
367
368
- The ` <Link/> ` component allows you to conveniently navigate users around
368
+ The ` <Link/> ` element allows you to conveniently navigate users around
369
369
the application with accessible anchor tags that don't break normal link
370
370
functionality like control/command clicking to open in a new tab. Also,
371
371
when the route a link references is active, you get the ` active ` css
@@ -417,8 +417,8 @@ it has to offer. Check out the [API Docs][API] to learn about
417
417
redirecting transitions, query parameters and more.
418
418
419
419
[ AsyncState ] :../api/mixins/AsyncState.md
420
- [ Route ] :../api/components /Route.md
421
- [ Routes ] :../api/components /Routes.md
420
+ [ Route ] :../api/elements /Route.md
421
+ [ Routes ] :../api/elements /Routes.md
422
422
[ API ] :../api/
423
423
[ path-matching ] :./path-matching.md
424
424
0 commit comments