Add modal for image picker

This commit is contained in:
jude
2023-11-03 19:17:16 +00:00
parent b83f1f2f31
commit 5dc7ceb8aa
8 changed files with 103 additions and 66 deletions

View File

@ -4,7 +4,7 @@ type Props = {
setModalOpen: (open: boolean) => never;
title: string;
onSubmitText?: string;
onSubmit?: () => never;
onSubmit?: () => void;
children: string | JSX.Element | JSX.Element[] | (() => JSX.Element);
};