Skip to content

Instantly share code, notes, and snippets.

@productioncoder
Created October 19, 2018 05:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save productioncoder/134a4a19c61db469027d3ff99ea8237a to your computer and use it in GitHub Desktop.
Save productioncoder/134a4a19c61db469027d3ff99ea8237a to your computer and use it in GitHub Desktop.
Youtube combine reducers: add video reducer
import apiReducer from './api';
import {combineReducers} from 'redux';
import videosReducer from './videos'
export default combineReducers({
api: apiReducer,
videos: videosReducer
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment