Working on getting CSS factored out.

Signed-off-by: Cliff Hill <xlorep@darkhelm.org>
This commit is contained in:
2025-09-08 16:35:24 -04:00
parent 3df1326727
commit dd2edf95bb
2 changed files with 3 additions and 2 deletions

View File

@@ -9,12 +9,13 @@
import React from "react";
import { List, Typography, ListItemButton } from "@mui/material";
import type { BookingListProps } from "../schemas";
// ...existing code...
import {
sortBookingsByStartTime,
formatBookingTime,
getInviteeName,
} from "../helpers/bookingList";
import type { BookingListProps } from "../schemas";
/**
* BookingList component.

View File

@@ -25,7 +25,7 @@ import BookingList from "../components/BookingList";
import type { ConferenceRoom } from "../schemas";
import type { Booking } from "../schemas";
import EventNoteIcon from "@mui/icons-material/EventNote";
import "./LandingPage.css";
// import "./LandingPage.css";
import { logger } from "../utils/logger";
/**