7 lines
200 B
TypeScript
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
|