20 lines
539 B
JavaScript
20 lines
539 B
JavaScript
import CenterLayout from "@/layouts/CenterLayout";
|
|
import DashboardLayouts from "@/layouts/dashboardLayouts";
|
|
import useUser from "@/lib/app/hooks/useUser";
|
|
import { useTranslations } from "next-intl";
|
|
import React from "react";
|
|
|
|
const DashboardLoanFollowUpComponent = () => {
|
|
const t = useTranslations();
|
|
const { token } = useUser();
|
|
return (
|
|
<DashboardLayouts>
|
|
<CenterLayout>
|
|
<p>چه کشکی چه پشمی</p>
|
|
</CenterLayout>
|
|
</DashboardLayouts>
|
|
);
|
|
};
|
|
|
|
export default DashboardLoanFollowUpComponent;
|