mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-02-18 22:17:11 +00:00
20 lines
457 B
JavaScript
20 lines
457 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 * as config from './config'
|
|
|
|
import {combineReducers} from 'redux';
|
|
import {routerReducer} from 'react-router-redux'
|
|
|
|
export default combineReducers({
|
|
...layout,
|
|
...inbox,
|
|
...auth,
|
|
...dashboard,
|
|
...loginCR,
|
|
...config,
|
|
routing: routerReducer
|
|
})
|