2018-12-01 19:22:26 +05:30
|
|
|
import { combineReducers } from 'redux';
|
|
|
|
|
2018-12-08 00:01:09 +02:00
|
|
|
import TopicsReducer from './topics';
|
|
|
|
import VideosReducer from './videos';
|
2018-12-01 19:22:26 +05:30
|
|
|
|
|
|
|
const rootReducer = combineReducers({
|
2018-12-08 00:01:09 +02:00
|
|
|
topics: TopicsReducer,
|
|
|
|
videos: VideosReducer
|
2018-12-01 19:22:26 +05:30
|
|
|
});
|
|
|
|
|
|
|
|
export default rootReducer;
|