Skip to content

Instantly share code, notes, and snippets.

@ahamedali95
Created May 4, 2020 03:35
Show Gist options
  • Save ahamedali95/85f129c9b018b173c9429602f70bfdab to your computer and use it in GitHub Desktop.
Save ahamedali95/85f129c9b018b173c9429602f70bfdab to your computer and use it in GitHub Desktop.
import bookReducer from './book';
import reviewReducer from './review';
const rootReducer = (state={}, action) => {
return {
review: reviewReducer(state.review, action),
book: bookReducer(state.book, {...action, ...state.review})
};
};
export default rootReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment