-
Notifications
You must be signed in to change notification settings - Fork 84
Home
Chris edited this page Mar 24, 2016
·
6 revisions
Welcome to the generator-react-webpack-redux wiki!
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);