lots of UI changes, and keyboard command support

This commit is contained in:
Sriram Hariharan
2023-03-04 22:42:51 -06:00
parent 00b8cd74b6
commit bc464cd264
9 changed files with 143 additions and 24 deletions

View File

@@ -14,10 +14,10 @@ const DAY_MAP = {
} as const;
/** A day of the week that a class is taught */
type Day = typeof DAY_MAP[keyof typeof DAY_MAP];
export type Day = typeof DAY_MAP[keyof typeof DAY_MAP];
/** A physical room that a class is taught in */
type Room = {
export type Room = {
/** The UT building code for where the class is taught */
building: string;
/** The room number for where the class is taught */