| 7 | // ------------------------------------------------------------ |
| 8 | |
| 9 | interface ImageModalProps { |
| 10 | dialogState: ImageModalState |
| 11 | setDialogState: React.Dispatch<React.SetStateAction<ImageModalState>> |
| 12 | } |
| 13 | |
| 14 | const ImageModal: React.FC<ImageModalProps> = ({ |
| 15 | dialogState, |
nothing calls this directly
no outgoing calls
no test coverage detected