2017-04-12 05:04:27 +00:00
|
|
|
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'
|
2017-04-14 06:24:16 +00:00
|
|
|
import * as config from './config'
|
2017-04-12 05:04:27 +00:00
|
|
|
|
|
|
|
import {combineReducers} from 'redux';
|
|
|
|
import {routerReducer} from 'react-router-redux'
|
2017-04-14 06:24:16 +00:00
|
|
|
|
2017-04-12 05:04:27 +00:00
|
|
|
export default combineReducers({
|
|
|
|
...layout,
|
|
|
|
...inbox,
|
|
|
|
...auth,
|
|
|
|
...dashboard,
|
|
|
|
...loginCR,
|
2017-04-14 06:24:16 +00:00
|
|
|
...config,
|
2017-04-12 05:04:27 +00:00
|
|
|
routing: routerReducer
|
|
|
|
})
|