import type { OdFileObject } from '../../types' import { FC } from 'react' import { PreviewContainer, DownloadBtnContainer } from './Containers' import DownloadButtonGroup from '../DownloadBtnGtoup' const ImagePreview: FC<{ file: OdFileObject }> = ({ file }) => { return ( <> {/* eslint-disable-next-line @next/next/no-img-element */} {file.name} ) } export default ImagePreview