import { Sheet } from "react-modal-sheet"; import type { BusStopUsagePoint } from "~/api/schema"; import { StopUsageChart } from "./StopUsageChart"; interface StopUsageModalProps { isOpen: boolean; onClose: () => void; usage: BusStopUsagePoint[]; } export const StopUsageModal = ({ isOpen, onClose, usage, }: StopUsageModalProps) => { return ( ); };