UNPKG

dynamic-modal

Version:

The dynamic-modal is a solution of creation different modals into project using a json configuration file

8 lines (7 loc) 161 B
import { ReactNode } from 'react'; export interface IPortal { children: ReactNode; closeTime: number; portalOpen: boolean; portalTag?: string; }