import type { FunctionComponent } from "preact"; import { Portal } from "./portal.tsx"; export const Modal: FunctionComponent = ({ children }) => { return (
{children}
); };