3-1-기본-리듀서-구조
function counter(state = 0, action) {
switch (action.type) {
case 'INCREMENT':
return state + 1;
case 'DECREMENT':
return state - 1;
default:
return state;
}
}기본적인 상태의 형태
Summary
Last updated
Was this helpful?