Spaces:
Running
Running
File size: 369 Bytes
5f3e9f5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import AssetPreviewModal from './AssetPreviewModal'
interface Props {
kind: 'html' | 'image'
src: string
title: string
subtitle?: string
onClose: () => void
}
export default function HtmlPreviewModal({ kind, src, title, subtitle, onClose }: Props) {
return <AssetPreviewModal kind={kind} src={src} title={title} subtitle={subtitle} onClose={onClose} />
}
|