feat: filling deals from excel file

This commit is contained in:
2024-12-25 21:16:10 +04:00
parent db21801cc1
commit 71cab887d2
29 changed files with 878 additions and 101 deletions

View File

@@ -0,0 +1,8 @@
import { Dispatch, SetStateAction } from "react";
type UseExcelDropzone = {
isLoading: boolean;
setIsLoading: Dispatch<SetStateAction<boolean>>;
}
export default UseExcelDropzone;