11 lines
No EOL
238 B
JavaScript
11 lines
No EOL
238 B
JavaScript
import { combineReducers } from 'redux';
|
|
|
|
import TopicsReducer from './topics';
|
|
import VideosReducer from './videos';
|
|
|
|
const rootReducer = combineReducers({
|
|
topics: TopicsReducer,
|
|
videos: VideosReducer
|
|
});
|
|
|
|
export default rootReducer; |