File size: 278 Bytes
20ec4ad |
1 2 3 4 5 6 7 8 9 10 11 12 |
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>
);
}
|