From 047b36bd5687401f6621673f2650c72bb199846f Mon Sep 17 00:00:00 2001 From: Astrian Zheng Date: Wed, 19 Feb 2025 21:06:57 +1100 Subject: [PATCH] chore: update some debugging code --- playground/app.tsx | 2 +- src/components/SingleDatePicker.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/playground/app.tsx b/playground/app.tsx index ad44162..de24280 100644 --- a/playground/app.tsx +++ b/playground/app.tsx @@ -9,7 +9,7 @@ export default () => { } return (
- +
{ const [selectedDate, setSelectedDate] = useState(new Date()) const [dates, setDates] = useState([]) const [l10nDays, setL10nDays] = useState([]) - const [selectMonth, setSelectMonth] = useState(true) + const [selectMonth, setSelectMonth] = useState(false) useEffect(() => { setDates(getCalendarDates(currentMonth, currentYear))