UNPKG

react-flash-modal

Version:

A lightweight and flexible React modal component with smooth animations and easy customization. Perfect for modern web applications. Can be easily integrated into any project.

12 lines (11 loc) 311 B
declare module 'react-easy-modal' { import { FC } from 'react'; export interface ModalPortal { isOpen: boolean, background: object; className: string; modalContent: object; onClose: () => void; } export const MultipleSelect: FC<ModalPortal>; }