2017-06-21 23:31:59 +00:00
|
|
|
// @flow
|
2017-04-18 23:34:24 +00:00
|
|
|
import * as generateWallet from './generateWallet'
|
2017-04-14 06:24:16 +00:00
|
|
|
import * as config from './config'
|
2017-06-12 01:00:28 +00:00
|
|
|
import * as swap from './swap'
|
2017-06-21 23:31:59 +00:00
|
|
|
import * as notifications from './notifications'
|
2017-06-12 01:00:28 +00:00
|
|
|
|
2017-04-18 23:34:24 +00:00
|
|
|
import { reducer as formReducer } from 'redux-form'
|
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({
|
2017-04-18 23:34:24 +00:00
|
|
|
...generateWallet,
|
2017-04-14 06:24:16 +00:00
|
|
|
...config,
|
2017-06-12 01:00:28 +00:00
|
|
|
...swap,
|
2017-06-21 23:31:59 +00:00
|
|
|
...notifications,
|
2017-04-18 23:34:24 +00:00
|
|
|
form: formReducer,
|
2017-04-12 05:04:27 +00:00
|
|
|
routing: routerReducer
|
|
|
|
})
|