Remove unneeded reducer imports.

This commit is contained in:
Daniel Ternyak 2017-04-24 18:59:57 -05:00
parent 67c4b826f5
commit 270c4911c8
1 changed files with 0 additions and 12 deletions

View File

@ -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,