import React from 'react'; import { Dialog, Box } from '@mui/material'; import { ScreenshotInterface } from '../dialogContext/useGallery'; import { DEVTOOLS_Z_INDEX } from '../../../constants'; import { ScreenshotWithLabels } from './ScreenshotWithLabels'; type Props = { screenshot: ScreenshotInterface; keyId: number | undefined; onClose: () => void; }; export const ScreenshotDetail: React.FC = ({ keyId, screenshot, onClose, }) => { return ( {screenshot && ( )} ); };