Home 페이지 기능 구현
날짜 및 기간 관리
현재 날짜 표시 및 당월 변경 기능
const [pivotDate, setPivotDate] = useState(new Date());
const onIncreaseMonth = () => {
setPivotDate(new Date(pivotDate.getFullYear(), pivotDate.getMonth() + 1));
};
const onDecreaseMonth = () => {
setPivotDate(new...
woodstock.hashnode.dev2 min read