import type { SightingType } from "../../types/types"; import NumberPlate from "../PlateStack/NumberPlate"; import ModalComponent from "../UI/ModalComponent"; type SightingModalProps = { isSightingModalOpen: boolean; handleClose: () => void; sighting: SightingType | null; }; const SightingModal = ({ isSightingModalOpen, handleClose, sighting, }: SightingModalProps) => { const motionAway = (sighting?.motion ?? "").toUpperCase() === "AWAY"; return (

Sighting Details

overview patch
plate patch infrared patch
); }; export default SightingModal;