File size: 291 Bytes
20ec4ad |
1 2 3 4 5 |
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" }) }));
}
|