[React.js] useReducer
useReducer란 컴포넌트 내부에 새로운 State를 생성하는 React Hook 모든 useState는 useReducer로 대체 가능 하다. useReducer는 useState와는 다르게 상태 관리 코드를 컴포넌트 외부로 분리할 수 있다. Reducer 문법 import { useReducer } from "react"; //reducer: 변환기 const reducer = (state, action) => { console.log(state, action); if (action.type === "INCREASE") { return state + action.data; } if (action.type === "DECREASE") { return state - action.data; } }; c..
2024.03.20