2017-08-13 23:02:46 +00:00
|
|
|
import { combineReducers } from 'redux';
|
|
|
|
import * as reducers from './reducers';
|
2017-08-16 23:29:12 +00:00
|
|
|
import * as login from './login';
|
2017-08-17 01:06:31 +00:00
|
|
|
import * as connect from './connect';
|
2017-08-13 01:35:09 +00:00
|
|
|
|
2017-08-13 23:02:46 +00:00
|
|
|
const rootReducer = combineReducers({
|
2017-08-17 01:06:31 +00:00
|
|
|
...reducers, ...login, ...connect
|
2017-08-13 23:02:46 +00:00
|
|
|
});
|
2017-08-13 01:35:09 +00:00
|
|
|
|
2017-08-13 23:02:46 +00:00
|
|
|
export default rootReducer;
|