muryshev's picture
init
79278ec
raw
history blame contribute delete
130 Bytes
export interface ModalWindowProps {
label?: string;
isOpen: boolean;
closeModal: () => void;
children: React.ReactNode;
}