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" }) })); | |
} | |