import appReducer from '../reducers';
const rootReducer = (state, action) => {
if (action.type === 'URL_CHANGED') {
state = undefined;
}
return appReducer(state, action);
};
{
1: {
id: 1,
count: 1,
amount: 100
},
2: {
id: 2,
count: 52,
amount: 1200
}
}