UNPKG

@yamada-ui/portal

Version:

Yamada UI portal component

10 lines (7 loc) 291 B
import { FC, PropsWithChildren, RefObject } from 'react'; interface ContainerPortalProps extends PropsWithChildren { containerRef: RefObject<HTMLElement | null>; appendToParentPortal?: boolean; } declare const ContainerPortal: FC<ContainerPortalProps>; export { ContainerPortal };