FPSMS-frontend
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 

30 rader
1.0 KiB

  1. import { Metadata } from "next";
  2. import { I18nProvider } from "@/i18n";
  3. import DashboardPage from "@/components/DashboardPage/DashboardPage";
  4. import DashboardPageButton from "@/components/DashboardPage/DashboardTabButton";
  5. import ProgressCashFlowSearch from "@/components/ProgressCashFlowSearch";
  6. import { Suspense } from "react";
  7. import Tabs, { TabsProps } from "@mui/material/Tabs";
  8. import Tab from "@mui/material/Tab";
  9. import Typography from "@mui/material/Typography";
  10. import ProjectCashFlowComponent from "@/components/ProjectCashFlow";
  11. export const metadata: Metadata = {
  12. title: "Project Status by Client",
  13. };
  14. const ProjectCashFlow: React.FC = () => {
  15. return (
  16. <I18nProvider namespaces={["dashboard"]}>
  17. <Typography variant="h4" marginInlineEnd={2}>
  18. Project Cash Flow
  19. </Typography>
  20. {/* <Suspense fallback={<ProgressCashFlowSearch.Loading />}>
  21. <ProgressCashFlowSearch/>
  22. </Suspense> */}
  23. <ProjectCashFlowComponent />
  24. </I18nProvider>
  25. );
  26. };
  27. export default ProjectCashFlow;