UNPKG

rsuite

Version:

A suite of react components

11 lines (10 loc) 274 B
import React from 'react'; interface PortalProps { id?: string; container?: HTMLElement | (() => HTMLElement | null) | null; } declare function usePortal(props?: PortalProps): { target: HTMLElement | null; Portal: React.FC<any>; }; export default usePortal;