@@ -60,7 +60,7 @@ 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
63
+ you can render it with ` this.props.activeRoute() ` in the parent all the
64
64
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.
@@ -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
}
@@ -180,8 +180,7 @@ routes do not inherit the path of their parent.
180
180
181
181
Routes can be nested. When a child route matches, the parent route's
182
182
handler will have an instance of the child route's handler available on
183
- ` this.props.activeRoute ` .
184
-
183
+ ` this.props.activeRoute() ` .
185
184
#### Examples
186
185
187
186
``` xml
@@ -215,7 +214,8 @@ props and static methods available to these components.
215
214
#### Props
216
215
217
216
** this.props.activeRoute** - The active child route handler instance.
218
- Use it in your render method to render the child route.
217
+ Use it in your render method to render the child route. You can pass
218
+ additional props to it for rendering.
219
219
220
220
** this.props.params** - When a route has dynamic segments like `<Route
221
221
path="users/: userId "/>` the dynamic values are available at
0 commit comments