const rootReducer = combineReducers({
index: (state = {}, action) => {
switch (action.type) {
case HYDRATE:
return { ...state, ...action.payload };
default:
return state;
}
},
user,
post,
});
//위의 코드를 아래처럼 바꿀 수 있다.
const rootReducer = (state, action) => {
switch (action.type) {
case HYDRATE :
return action.payload;
default: {
const combinedReducer = combineReducers({
user,
post,
});
return combinedReducer(state, action);
}
}
};
이렇게 작동하던 것이
이렇게 바뀐다. (잘 바뀐 것이다.)