UNPKG

327 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.Portal = void 0;
7
8var _compat = require("preact/compat");
9
10const Portal = ({
11 into,
12 children
13}) => {
14 const container = document.querySelector(into);
15 return (0, _compat.createPortal)(children, container);
16};
17
18exports.Portal = Portal;
\No newline at end of file