()
| 300 | const selectDay = (day: number) => onChange?.(toDateString(view.year, view.month, day)) |
| 301 | |
| 302 | const goToToday = () => { |
| 303 | setView({ month: today.getMonth(), year: today.getFullYear() }) |
| 304 | onChange?.(toDateString(today.getFullYear(), today.getMonth(), today.getDate())) |
| 305 | } |
| 306 | |
| 307 | return ( |
| 308 | <div className={cn('flex w-[256px] flex-col p-2', className)}> |
nothing calls this directly
no test coverage detected