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-13 01:35:09 +00:00
|
|
|
|
2017-08-13 23:02:46 +00:00
|
|
|
const rootReducer = combineReducers({
|
2017-08-16 23:29:12 +00:00
|
|
|
...reducers, ...login
|
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;
|