UNPKG

mui-modal-provider

Version:

[![codecov](https://codecov.io/gh/Quernest/mui-modal-provider/branch/master/graph/badge.svg?token=AL2WK480NF)](https://codecov.io/gh/Quernest/mui-modal-provider) [![package version](https://img.shields.io/npm/v/mui-modal-provider.svg?style=flat-square)](h

10 lines (9 loc) 266 B
import React from 'react'; export interface LegacyModalProps { open?: boolean; text: string; onExited?: (args: any) => void; onClose?: (args: any) => void; } declare const LegacyModal: React.FC<LegacyModalProps>; export default LegacyModal;