Skip to content

Instantly share code, notes, and snippets.

@ahamedali95
Created May 4, 2020 16:08
Show Gist options
  • Save ahamedali95/c3ecd42b6c18fae92af88d69a6922121 to your computer and use it in GitHub Desktop.
Save ahamedali95/c3ecd42b6c18fae92af88d69a6922121 to your computer and use it in GitHub Desktop.
import { combineReducers } from 'redux';
import accountInfoReducer from './accountInfoReducer';
import paymentReducer from './paymentReducer';
const checkoutReducer = combineReducers({
accountInfo: accountInfoReducer,
payment: paymentReducer
});
export default checkoutReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment