UNPKG

191 BJavaScriptView Raw
1import { createPortal } from 'preact/compat';
2
3export const Portal = ({ into, children }) => {
4 const container = document.querySelector(into);
5 return createPortal(children, container);
6};
\No newline at end of file