Skip to content

Instantly share code, notes, and snippets.

@ahamedali95
Created May 4, 2020 01:39
Show Gist options
  • Save ahamedali95/57f1d980340a0753914df41341f91cc6 to your computer and use it in GitHub Desktop.
Save ahamedali95/57f1d980340a0753914df41341f91cc6 to your computer and use it in GitHub Desktop.
import { combineReducers } from 'redux';
import bookReducer from './book';
import reviewReducer from './review';
const rootReducer = combineReducers({
book: bookReducer,
review: reviewReducer
});
export default rootReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment