UNPKG

@navikt/ds-react

Version:

React components from the Norwegian Labour and Welfare Administration.

10 lines (9 loc) 385 B
import React, { HTMLAttributes } from "react"; export interface PortalProps extends HTMLAttributes<HTMLDivElement> { /** * An optional container where the portaled content should be appended. */ rootElement?: HTMLElement | null; } export declare const Portal: React.ForwardRefExoticComponent<PortalProps & React.RefAttributes<HTMLDivElement>>; export default Portal;