2017-04-18 18:34:24 -05:00
|
|
|
import * as generateWallet from './generateWallet'
|
2017-04-14 01:24:16 -05:00
|
|
|
import * as config from './config'
|
2017-06-11 20:00:28 -05:00
|
|
|
import * as swap from './swap'
|
|
|
|
|
2017-04-18 18:34:24 -05:00
|
|
|
import { reducer as formReducer } from 'redux-form'
|
2017-04-12 00:04:27 -05:00
|
|
|
import {combineReducers} from 'redux';
|
|
|
|
import {routerReducer} from 'react-router-redux'
|
2017-04-14 01:24:16 -05:00
|
|
|
|
2017-04-12 00:04:27 -05:00
|
|
|
export default combineReducers({
|
2017-04-18 18:34:24 -05:00
|
|
|
...generateWallet,
|
2017-04-14 01:24:16 -05:00
|
|
|
...config,
|
2017-06-11 20:00:28 -05:00
|
|
|
...swap,
|
2017-04-18 18:34:24 -05:00
|
|
|
form: formReducer,
|
2017-04-12 00:04:27 -05:00
|
|
|
routing: routerReducer
|
|
|
|
})
|