Enabled HMR for reducers

This commit is contained in:
Andrey Okonetchnikov
2016-09-13 18:05:20 +02:00
parent 5f74d0ae28
commit 2b27718493
2 changed files with 24 additions and 14 deletions

View File

@ -0,0 +1,8 @@
import { combineReducers } from 'redux';
import { routerReducer } from 'react-router-redux';
import reducers from '.';
export default combineReducers({
...reducers,
routing: routerReducer
});