Moved interfaces to the interface folder.

This commit is contained in:
Lucid Kobold
2022-01-05 12:36:59 -06:00
parent 356c120ff2
commit 628b0ce9f3
5 changed files with 6 additions and 24 deletions

View File

@@ -66,6 +66,12 @@ interface UpdateCalendarProps {
day: number;
}
interface UpdateCalendarProps {
year: number;
month: number;
day: number;
}
interface CalenderContextState {
selectedDate: Date;
title: string;