Тема: Лямбда лямбд, не розуміть
Озьдо повний код
я не можу наздогнати ось цю частину
const combineReducers = reducers => (state = {}, action) => {
return Object.keys(reducers).reduce((nextState, key) => {
nextState[key] = reducers[key](state[key], action);
return nextState;
}, {});
};
Як воно робе?