@@ -60,8 +60,8 @@ React.renderComponent((
60
60
61
61
When a ` Route ` is active, you'll get an instance of ` handler `
62
62
automatically rendered for you. When one of the child routes is active,
63
- you can render it with ` this.props.activeRoute() ` in the parent all the
64
- way down the view hierarchy. This allows you to create nested layouts
63
+ the component will be available as ` this.props.activeRoute ` in the parent
64
+ all the way down the view hierarchy. This allows you to create nested layouts
65
65
without having to wire it all up yourself. ` Link ` components create
66
66
accessible anchor tags to route you around the application.
67
67
@@ -91,7 +91,7 @@ var App = React.createClass({
91
91
< li>< Link to= " users" > Users< / Link>< / li>
92
92
< li>< Link to= " user" userId= " 123" > User 123 < / Link>< / li>
93
93
< / ul>
94
- { this .props .activeRoute ()}
94
+ < this .props .activeRoute / >
95
95
< / div>
96
96
);
97
97
}
@@ -108,7 +108,7 @@ var Users = React.createClass({
108
108
return (
109
109
< div>
110
110
< h2> Users< / h2>
111
- { this .props .activeRoute ()}
111
+ < this .props .activeRoute / >
112
112
< / div>
113
113
);
114
114
}
@@ -179,8 +179,10 @@ routes do not inherit the path of their parent.
179
179
#### Children
180
180
181
181
Routes can be nested. When a child route matches, the parent route's
182
- handler will have an instance of the child route's handler available on
183
- ` this.props.activeRoute() ` .
182
+ handler will have an instance of the child route's handler available as
183
+ ` this.props.activeRoute ` . You can then render it in the parent
184
+ passing in any additional props as needed.
185
+
184
186
#### Examples
185
187
186
188
``` xml
@@ -213,9 +215,8 @@ props and static methods available to these components.
213
215
214
216
#### Props
215
217
216
- ** this.props.activeRoute** - The active child route handler instance.
217
- Use it in your render method to render the child route. You can pass
218
- additional props to it for rendering.
218
+ ** this.props.activeRoute** - The active child route handler.
219
+ Use it in your render method to render the child route.
219
220
220
221
** this.props.params** - When a route has dynamic segments like `<Route
221
222
path="users/: userId "/>` the dynamic values are available at
0 commit comments