5 lines
72 B
TypeScript
5 lines
72 B
TypeScript
|
export interface ModalProps {
|
||
|
isOpen: boolean
|
||
|
onClose: () => void
|
||
|
}
|