import type { FC } from 'react' import { createPortal } from 'react-dom' import { RiCloseLine } from '@remixicon/react' type ImagePreviewProps = { url: string onCancel: () => void } const ImagePreview: FC = ({ url, onCancel, }) => { return createPortal(
e.stopPropagation()}> preview image
, document.body, ) } export default ImagePreview