You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

25 lines
780 B

  1. //src\app\(main)\analytics\LateStartReport\page.tsx
  2. import { Metadata } from "next";
  3. import { I18nProvider } from "@/i18n";
  4. import Typography from "@mui/material/Typography";
  5. import LateStartReportComponent from "@/components/LateStartReport";
  6. export const metadata: Metadata = {
  7. title: "Project Status by Client",
  8. };
  9. const ProjectLateReport: React.FC = () => {
  10. return (
  11. <I18nProvider namespaces={["analytics"]}>
  12. <Typography variant="h4" marginInlineEnd={2}>
  13. Project Completion Report with Outstanding Un-billed Hours
  14. </Typography>
  15. {/* <Suspense fallback={<ProgressCashFlowSearch.Loading />}>
  16. <ProgressCashFlowSearch/>
  17. </Suspense> */}
  18. <LateStartReportComponent />
  19. </I18nProvider>
  20. );
  21. };
  22. export default ProjectLateReport;