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
2222
2323// mixins
2424Router .ActiveState
25- Router .AsyncState
26- Router .PathState
27- Router .RouteLookup
28- Router .Transitions
25+ Router .CurrentPath
26+ Router .Navigation
2927
3028// methods
3129Router .renderRoutesToString
30+ Router .renderRoutesToStaticMarkup
3231```
3332
3433Methods
Original file line number Diff line number Diff line change @@ -277,10 +277,7 @@ var Message = React.createClass({
277277```
278278
279279Assuming 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' ` .
284281
285282Important Note About Dynamic Segments
286283-------------------------------------
You can’t perform that action at this time.
0 commit comments