UNPKG

react-modal-plr

Version:
11 lines (8 loc) 254 B
import React, { SetStateAction } from 'react'; interface IModalProps { setShowModal: React.Dispatch<SetStateAction<boolean>>; children: React.ReactNode; buttonContent: string; } declare const Modal: React.FC<IModalProps>; export { Modal };