import React from 'react'; import Dialog from '@mui/material/Dialog'; import { styled } from '@mui/material/styles'; import { ScreenshotInterface } from '../TranslationDialogContextProvider'; import { DEVTOOLS_Z_INDEX } from '../../constants'; const ScImg = styled('img')` width: 80vw; height: 80vh; max-width: 100%; max-height: 100%; object-fit: contain; `; type Props = { screenshot: ScreenshotInterface; onClose: () => void; }; export const ScreenshotDetail: React.FC = ({ screenshot, onClose }) => { return ( ); };