Make onClose required in Modal

This commit is contained in:
David Baker
2022-11-07 12:23:21 +00:00
parent 509fd65156
commit 51572b5787
3 changed files with 12 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ export interface ModalProps extends OverlayProps, AriaDialogProps {
children: ReactNode;
className?: string;
mobileFullScreen?: boolean;
onClose?: () => void;
onClose: () => void;
}
export function Modal({