20 lines
457 B
JavaScript
Raw Normal View History

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