您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

25 行
733 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. Delay Report
  14. </Typography>
  15. {/* <Suspense fallback={<ProgressCashFlowSearch.Loading />}>
  16. <ProgressCashFlowSearch/>
  17. </Suspense> */}
  18. <LateStartReportComponent />
  19. </I18nProvider>
  20. );
  21. };
  22. export default ProjectLateReport;