import { usePortal } from "https://deno.land/x/aleph@1.0.0-beta.23/runtime/react/mod.ts";
The usePortal
hook to create a portal helper.
Please ensure to pass the React.createPortal
in Router
props.
function Modal() {
const portal = usePortal({ preventScroll: true });
return portal(<p>Hello portal!</p>);
}