Skip to content

Commit c462219

Browse files
committed
Update UPGRADE_GUIDE.md
1 parent 4764ef1 commit c462219

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UPGRADE_GUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,6 @@ anymore. Our mixins like `State` and `Navigation` just proxied calls to
1414
some methods on an undocumented feature of React called `context`, that
1515
in turn called methods on the router instance under the hood.
1616

17-
Note, you can still use our mixins, you'll just get a deprecation warning.
18-
1917
Without mixins we needed a way for you to get access to these methods.
2018
We decided the simplest solution was to stop hiding the router instance
2119
and just put the whole thing on context.
@@ -25,6 +23,8 @@ tree that parent components (`Handler` in the `Router.run` callback) can
2523
explicitly define and descendent components can explicitly ask for. The
2624
stuff on context doesn't show up in a component unless you ask for it.
2725

26+
**Note:** You can still use our mixins, you'll just get a deprecation warning.
27+
2828
```js
2929
// 0.12.x
3030
var Foo = React.createClass({

0 commit comments

Comments
 (0)