feat: passport images for user
This commit is contained in:
12
src/types/UseImageDropzone.tsx
Normal file
12
src/types/UseImageDropzone.tsx
Normal file
@@ -0,0 +1,12 @@
|
||||
import { Dispatch, SetStateAction } from "react";
|
||||
import { BaseFormInputProps } from "./utils.ts";
|
||||
|
||||
type UseImageDropzone = {
|
||||
showDropzone: boolean;
|
||||
setShowDropzone: Dispatch<SetStateAction<boolean>>;
|
||||
isLoading: boolean;
|
||||
setIsLoading: Dispatch<SetStateAction<boolean>>;
|
||||
imageUrlInputProps?: BaseFormInputProps<string>;
|
||||
}
|
||||
|
||||
export default UseImageDropzone;
|
||||
Reference in New Issue
Block a user