chore: merge in finished CalendarGrid

This commit is contained in:
doprz
2024-03-06 15:07:45 -06:00
parent c6a48dd3f6
commit 91d930ee92
7 changed files with 270 additions and 102 deletions

View File

@@ -21,6 +21,9 @@ interface CalendarGridPoint {
export interface CalendarGridCourse {
calendarGridPoint: CalendarGridPoint;
componentProps: CalendarCourseCellProps;
gridColumnStart?: number;
gridColumnEnd?: number;
totalColumns?: number;
}
const convertMinutesToIndex = (minutes: number): number => Math.floor(minutes - 420 / 30);