@@ -86,7 +86,7 @@ var App = React.createClass({
86
86
< li>< Link to= " users" > Users< / Link>< / li>
87
87
< li>< Link to= " user" userId= " 123" > User 123 < / Link>< / li>
88
88
< / ul>
89
- < this .props .activeRoute / >
89
+ < this .props .activeRouteHandler / >
90
90
< / div>
91
91
);
92
92
}
@@ -103,7 +103,7 @@ var Users = React.createClass({
103
103
return (
104
104
< div>
105
105
< h2> Users< / h2>
106
- < this .props .activeRoute / >
106
+ < this .props .activeRouteHandler / >
107
107
< / div>
108
108
);
109
109
}
@@ -116,16 +116,16 @@ var User = React.createClass({
116
116
});
117
117
```
118
118
119
- To better understand what is happening with ` activeRoute ` perhaps an
119
+ To better understand what is happening with ` activeRouteHandler ` perhaps an
120
120
example without the router will help. Lets take the scenario where
121
121
` /users/2 ` has been matched. Your render method, without this router,
122
122
might look something like this:
123
123
124
124
``` js
125
125
render : function () {
126
126
var user = < User params= {{userId: 2 }}/ > ;
127
- var users = < User activeRoute = {user}/ > ;
128
- return < App activeRoute = {users}/ > ;
127
+ var users = < User activeRouteHandler = {user}/ > ;
128
+ return < App activeRouteHandler = {users}/ > ;
129
129
}
130
130
```
131
131
@@ -190,7 +190,7 @@ routes do not inherit the path of their parent.
190
190
191
191
Routes can be nested. When a child route matches, the parent route's
192
192
handler will have an instance of the child route's handler available as
193
- ` this.props.activeRoute () ` . You can then render it in the parent
193
+ ` this.props.activeRouteHandler () ` . You can then render it in the parent
194
194
passing in any additional props as needed.
195
195
196
196
#### Examples
@@ -225,7 +225,7 @@ props and static methods available to these components.
225
225
226
226
#### Props
227
227
228
- ** this.props.activeRoute (extraProps)** - The active child route handler.
228
+ ** this.props.activeRouteHandler (extraProps)** - The active child route handler.
229
229
Use it in your render method to render the child route, passing in
230
230
additional properties as needed.
231
231
0 commit comments