import PlateRead from "./components/plateRead/PlateRead"; import SightingStack from "./components/sightingStack/SightingStack"; import VideoFeed from "./components/videoFeed/VideoFeed"; import { useSightingList } from "./hooks/useSightingList"; import { useCameraSettingsContext } from "../../app/context/CameraSettingsContext"; import SystemOverview from "./SystemOverview/SystemOverview"; const Dashboard = () => { const { sightingList, isLoading, totalSightings } = useSightingList(); const { state: cameraSettings } = useCameraSettingsContext(); const size = cameraSettings.imageSize; const mostRecent = sightingList[0]; return (