Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- //src\components\LateStartReportGen\LateStartReportGenWrapper.tsx
- import { fetchProjectsCashFlow } from "@/app/api/cashflow";
- import React from "react";
- import LateStartReportGen from "./LateStartReportGen";
- import LateStartReportGenLoading from "./LateStartReportGenLoading";
-
- interface SubComponents {
- Loading: typeof LateStartReportGenLoading;
- }
-
- const LateStartReportGenWrapper: React.FC & SubComponents = async () => {
- const clentprojects = await fetchProjectsCashFlow();
-
- return <LateStartReportGen projects={clentprojects} />;
- };
-
- LateStartReportGenWrapper.Loading = LateStartReportGenLoading;
-
- export default LateStartReportGenWrapper;
|