UNPKG

@surveycake/rc

Version:

react component of surveycake

11 lines (10 loc) 280 B
import { FC } from 'react'; import { Container } from '@surveycake/rhooks'; export interface PortalProps { /** * HTMLElement, ref(createRef), component instance. */ container?: Container; } declare const Portal: FC<PortalProps>; export default Portal;