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

{sighting?.vrm}

infrared patch
); }; export default SightingModal;