feat: calendar header formatting and data displaying (#160)

This commit is contained in:
Samuel Gunter
2024-03-13 21:38:40 -05:00
committed by GitHub
parent 61c1e88dcf
commit 5cce1c79fc
16 changed files with 57 additions and 10 deletions

View File

@@ -57,6 +57,7 @@ export const exampleSchedule: UserSchedule = new UserSchedule({
courses: [exampleCourse],
name: 'Example Schedule',
hours: 3,
updatedAt: Date.now(),
});
export const bevoCourse: Course = new Course({
@@ -108,6 +109,7 @@ export const bevoScheule: UserSchedule = new UserSchedule({
courses: [bevoCourse],
name: 'Bevo Schedule',
hours: 3,
updatedAt: Date.now(),
});
export const MikeScottCS314Course: Course = new Course({
@@ -160,4 +162,5 @@ export const MikeScottCS314Schedule: UserSchedule = new UserSchedule({
courses: [MikeScottCS314Course],
name: 'Mike Scott CS314 Schedule',
hours: 3,
updatedAt: Date.now(),
});