React 개발을 하다보면 항상 먼저, 자주 사용하는 것중 하나가 useState이다. 지금 진행하는 프로젝트에서 state로 관리해야할 변수가 너무 많아서 파일안에 useState가 정말 많다. 마치 아래와 같은 느낌이다. import { useState } from "react"; function EditCalendarEvent() { const [startDate, setStartDate] = useState(); const [endDate, setEndDate] = useState(); const [title, setTitle] = useState(""); const [description, setDescription] = useState(""); const [location, setLocatio..