Module

x/aleph/runtime/react/mod.ts>usePortal

The Full-stack Framework in Deno.
Go to Latest
function usePortal
import { usePortal } from "https://dotland.deno.dev/x/aleph@1.0.0-beta.29/runtime/react/mod.ts";

The usePortal hook to create a portal node. Please ensure to pass the React.createPortal in Router props.

function Modal() {
  const portal = usePortal({ type: "dialog", preventScroll: true });
  return portal(<p>Hello portal!</p>);
}

Parameters

optional
props: { key?: string | null; className?: string; lockScroll?: boolean; type?: "div" | "dialog"; }

Returns

(children: ReactNode) => ReactPortal | null