()
| 82 | }; |
| 83 | |
| 84 | const goToPreviousWeek = () => setCurrentWeekStart(subWeeks(currentWeekStart, 1)); |
| 85 | const goToNextWeek = () => setCurrentWeekStart(addWeeks(currentWeekStart, 1)); |
| 86 | const goToToday = () => setCurrentWeekStart(startOfWeek(new Date(), { weekStartsOn: 1 })); |
| 87 |
nothing calls this directly
no outgoing calls
no test coverage detected