Skip to content
Chris edited this page Mar 24, 2016 · 6 revisions

Welcome to the generator-react-webpack-redux wiki!

Routing

react-redux-router

From your freshly created project run:

`npm install --save react-router-redux

In your root reducer import reeact-router-redux and add it to the reducers:

import { combineReducers } from 'redux';
import { routerReducer } from 'react-router-redux';
const reducers = {
  routing: routerReducer
};
module.exports = combineReducers(reducers);
Clone this wiki locally