useReducer 소개// Exam.jsximport { useReducer } from "react";// reducer : 변환기// -> 상태를 변화시키는 변환기 역할function reducer(state, action) { switch (action.type) { case "INCREASE": return state + action.data; case "DECREASE": return state - action.data; default: return state; }}const Exam = () => { // dispatch : 발송하다, 급송하다 // -> 상태 변화가 있어야 한다는 사실을 알리는, 발송하는 함수 const [state, di..