Implement add user function

This commit is contained in:
2023-10-29 13:19:01 +07:00
parent 372e6819dd
commit 4f24d9c6e2
12 changed files with 149 additions and 40 deletions
@@ -24,6 +24,8 @@ interface IDialogProps {
title?: string;
children?: JSX.Element[] | JSX.Element;
onClose?: () => void;
reload?: boolean;
setReload?: React.Dispatch<React.SetStateAction<boolean>>;
ref?: React.MutableRefObject<HTMLDialogElement | undefined>;
}