yasi delete signup

This commit is contained in:
Yasiu1376
2023-12-12 09:37:41 +03:30
parent b27fabfa35
commit 83d692a913
16 changed files with 13 additions and 758 deletions

View File

@@ -1,14 +1,12 @@
import DashboardLayouts from "@/layouts/dashboardLayouts";
import {
Grid,
Stack,
} from "@mui/material";
import {useEffect, useState} from "react";
import {SHOW_LOAN_REQUEST_NAVGAN} from "@/core/data/apiRoutes";
import useLoading from "@/lib/app/hooks/useLoading";
import useRequest from "@/lib/app/hooks/useRequest";
import moment from "jalali-moment";
import RequestCard from "@/components/dashboard/navgan/followUp-loan/RequestCard";
import {useLoading, useRequest} from "@witel/webapp-builder";
const LoanFollowUpComponent = () => {
const requestServer = useRequest();
@@ -34,7 +32,6 @@ const LoanFollowUpComponent = () => {
}, []);
return (
<DashboardLayouts>
<Stack
spacing={2}
sx={{
@@ -53,7 +50,6 @@ const LoanFollowUpComponent = () => {
))}
</Grid>
</Stack>
</DashboardLayouts>
);
};