import { ReactNode } from "react"; import { createPortal } from "react-dom"; export default function Drawer({ open, title, children, onClose }: { open: boolean; title: string; children: ReactNode; onClose: () => void; }) { if (!open) return null; return createPortal(
{title}
{children}
, document.body ); }