mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-19 06:27:37 +00:00
17 lines
406 B
JavaScript
17 lines
406 B
JavaScript
|
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 {combineReducers} from 'redux';
|
||
|
import {routerReducer} from 'react-router-redux'
|
||
|
export default combineReducers({
|
||
|
...layout,
|
||
|
...inbox,
|
||
|
...auth,
|
||
|
...dashboard,
|
||
|
...loginCR,
|
||
|
routing: routerReducer
|
||
|
})
|