Fix redux documentation (#450)

I think the navigation key for the redux store should be `nav` and not `navReducer`.
This commit is contained in:
Javier Cuevas
2017-02-23 10:57:10 +01:00
committed by Mike Grabowski
parent e0c1c95e6f
commit fdb5faae7e

View File

@@ -13,7 +13,7 @@ const navReducer = (state, action) => {
};
const appReducer = combineReducers({
navReducer,
nav: navReducer,
...
});