Skip to content

Instantly share code, notes, and snippets.

@ahamedali95
Created May 4, 2020 16:18
Show Gist options
  • Save ahamedali95/74352c1337335297044c7a117de58f15 to your computer and use it in GitHub Desktop.
Save ahamedali95/74352c1337335297044c7a117de58f15 to your computer and use it in GitHub Desktop.
import {combineReducers} from 'redux';
import ticketReducer from '../../ticketPage/reducers/ticketReducer';
import checkoutReducer from '../../checkoutPage/reducers';
const rootReducer = combineReducers({
ticket: ticketReducer,
checkout: checkoutReducer
});
export default rootReducer;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment