| 6 | import { generateCarImageUrl } from "@utils"; |
| 7 | |
| 8 | interface CarDetailsProps { |
| 9 | isOpen: boolean; |
| 10 | closeModal: () => void; |
| 11 | car: CarProps; |
| 12 | } |
| 13 | |
| 14 | const CarDetails = ({ isOpen, closeModal, car }: CarDetailsProps) => ( |
| 15 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected