Skip to content

Commit 851ba01

Browse files
committed
moar overview updates
1 parent 61d35a9 commit 851ba01

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/guides/overview.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Without React Router
3636
--------------------
3737

3838
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:
4040

4141
```js
4242
var Header = React.createClass({
@@ -184,7 +184,7 @@ its parent route, `app`, is also matched. The `run` callback receives
184184

185185
Rendering `Handler` is really just rendering `App` since its the highest
186186
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.
188188
`<RouteHandler/>` is nearly identical to `{{outlet}}` from Ember or
189189
`<div ng-view/>` from angular.
190190

@@ -196,7 +196,7 @@ notices that it has a `DefaultRoute`, so `Dashboard` becomes the new
196196
`<RouteHandler/>`. If a `DefaultRoute` is defined, it will be active
197197
when the parent's route is matched exactly.
198198

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
200200
repeat it anymore. React Router shares that UI for us from one place.
201201

202202
More Nesting
@@ -365,7 +365,7 @@ Bells and Whistles
365365

366366
### `<Link/>`
367367

368-
The `<Link/>` component allows you to conveniently navigate users around
368+
The `<Link/>` element allows you to conveniently navigate users around
369369
the application with accessible anchor tags that don't break normal link
370370
functionality like control/command clicking to open in a new tab. Also,
371371
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
417417
redirecting transitions, query parameters and more.
418418

419419
[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
422422
[API]:../api/
423423
[path-matching]:./path-matching.md
424424

0 commit comments

Comments
 (0)