File tree Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Expand file tree Collapse file tree 2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,12 @@ Router.Routes
22
22
23
23
// mixins
24
24
Router .ActiveState
25
- Router .AsyncState
26
- Router .PathState
27
- Router .RouteLookup
28
- Router .Transitions
25
+ Router .CurrentPath
26
+ Router .Navigation
29
27
30
28
// methods
31
29
Router .renderRoutesToString
30
+ Router .renderRoutesToStaticMarkup
32
31
```
33
32
34
33
Methods
Original file line number Diff line number Diff line change @@ -277,10 +277,7 @@ var Message = React.createClass({
277
277
```
278
278
279
279
Assuming the user navigates to ` /inbox/123 ` , ` this.props.params.messageId ` is
280
- going to be ` '123' ` . Check out the [ AsyncState] [ AsyncState ] mixin to see
281
- how you can turn this parameter into state on your component. Or for a
282
- more basic approach, make an ajax call in ` componentDidMount ` with the
283
- value.
280
+ going to be ` '123' ` .
284
281
285
282
Important Note About Dynamic Segments
286
283
-------------------------------------
You can’t perform that action at this time.
0 commit comments