|
|
@@ -2,13 +2,14 @@ |
|
|
|
import { Metadata } from "next"; |
|
|
|
import { I18nProvider } from "@/i18n"; |
|
|
|
import Typography from "@mui/material/Typography"; |
|
|
|
import LateStartReportComponent from "@/components/Report/LateStartReport"; |
|
|
|
import LateStartReportGen from "@/components/Report/LateStartReportGen"; |
|
|
|
import { Suspense } from "react"; |
|
|
|
|
|
|
|
export const metadata: Metadata = { |
|
|
|
title: "Late Start Report", |
|
|
|
}; |
|
|
|
|
|
|
|
const ProjectLateReport: React.FC = () => { |
|
|
|
const ProjectLateReport: React.FC = async () => { |
|
|
|
return ( |
|
|
|
<I18nProvider namespaces={["analytics"]}> |
|
|
|
<Typography variant="h4" marginInlineEnd={2}> |
|
|
@@ -17,7 +18,9 @@ const ProjectLateReport: React.FC = () => { |
|
|
|
{/* <Suspense fallback={<ProgressCashFlowSearch.Loading />}> |
|
|
|
<ProgressCashFlowSearch/> |
|
|
|
</Suspense> */} |
|
|
|
<LateStartReportComponent /> |
|
|
|
<Suspense fallback={<LateStartReportGen.Loading/>}> |
|
|
|
<LateStartReportGen /> |
|
|
|
</Suspense> |
|
|
|
</I18nProvider> |
|
|
|
); |
|
|
|
}; |
|
|
|