MyCrypto/common/reducers/index.js

20 lines
457 B
JavaScript
Raw Normal View History

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'
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-12 05:04:27 +00:00
export default combineReducers({
...layout,
...inbox,
...auth,
...dashboard,
...loginCR,
...config,
2017-04-12 05:04:27 +00:00
routing: routerReducer
})