๐ ๋ชฉ์ฐจ ์๊ฐ ์กฐ๊ฑด์ ๋ฐ๋ผ ๋ฒํผํ์ฑํ or ๋นํ์ฑํ ์ปค์คํ ํ ์์ ์ฝ๋import {useState, useEffect} from "react";export const useTimeRestrictedToggle = () => { const [isEnabled, setIsEnabled] = useState(false);useEffect(()=>{ const checkIsHoliday = (date: Date) => { const month = date.getMonth() + 1; const day = date.getDate(); // ๊ณตํด์ผ (์ ์ , ์ค๋ , ์ถ์, ๋ฑ) const isNewYear = month === 1 && day === ..