frontend/src/reducers/index.js

11 lines
238 B
JavaScript
Raw Normal View History

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