klawdyoss's picture
upload limpo
20ec4ad
raw
history blame contribute delete
291 Bytes
import { jsx as _jsx } from "react/jsx-runtime";
export default function PreviewPanel({ html }) {
return (_jsx("div", { className: "h-full bg-gray-900", children: _jsx("iframe", { srcDoc: html, className: "w-full h-full border-none", sandbox: "allow-scripts allow-same-origin" }) }));
}