diff --git a/common/reducers/index.js b/common/reducers/index.js index ea36a696..28b1f155 100644 --- a/common/reducers/index.js +++ b/common/reducers/index.js @@ -1,22 +1,10 @@ -import * as layout from './layout'; -import * as inbox from './inbox' -import * as auth from './auth' -import * as loginCR from './loginCR' -import * as dashboard from './dashboard' import * as generateWallet from './generateWallet' import * as config from './config' - import { reducer as formReducer } from 'redux-form' - import {combineReducers} from 'redux'; import {routerReducer} from 'react-router-redux' export default combineReducers({ - ...layout, - ...inbox, - ...auth, - ...dashboard, - ...loginCR, ...generateWallet, ...config, form: formReducer,