brf/client/public/shared/components/portal.tsx
2025-11-24 17:09:09 +01:00

7 lines
200 B
TypeScript

import { createPortal } from 'preact/compat'
const Portal = ({ children, container = typeof document !== 'undefined' && document.body }) =>
createPortal(children, container)
export default Portal