pre codemon

This commit is contained in:
2024-08-26 14:13:10 -06:00
parent a681477b1a
commit 672144b097
4 changed files with 14 additions and 12 deletions

View File

@@ -1,13 +1,16 @@
"use client"
import { FC, useState } from "react";
"use client";
import { useState } from "react";
import { CalendarMonthModel } from "./calendarMonthUtils";
import { DayOfWeek, LocalCourse } from "@/models/local/localCourse";
import { Day } from "./Day";
import Day from "./Day";
export const CalendarMonth: FC<{
export default function CalendarMonth({
month,
localCourse,
}: {
month: CalendarMonthModel;
localCourse: LocalCourse;
}> = ({ month, localCourse }) => {
}) {
const [isCollapsed, setIsCollapsed] = useState(false);
const isInPast =
@@ -60,4 +63,4 @@ export const CalendarMonth: FC<{
</div>
</>
);
};
}