klawdyoss's picture
upload limpo
20ec4ad
raw
history blame contribute delete
278 Bytes
export default function PreviewPanel({ html }: { html: string }) {
return (
<div className="h-full bg-gray-900">
<iframe
srcDoc={html}
className="w-full h-full border-none"
sandbox="allow-scripts allow-same-origin"
/>
</div>
);
}