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

18 行
707 B

  1. import React from "react";
  2. import GenerateEX02ProjectCashFlowReportLoading from "./GenerateEX02ProjectCashFlowReportLoading";
  3. import { fetchProjects } from "@/app/api/projects";
  4. import GenerateEX02ProjectCashFlowReport from "./GenerateEX02ProjectCashFlowReport";
  5. interface SubComponents {
  6. Loading: typeof GenerateEX02ProjectCashFlowReportLoading;
  7. }
  8. const GenerateEX02ProjectCashFlowReportWrapper: React.FC & SubComponents = async () => {
  9. const projects = await fetchProjects();
  10. return <GenerateEX02ProjectCashFlowReport projects={projects} />;
  11. };
  12. GenerateEX02ProjectCashFlowReportWrapper.Loading = GenerateEX02ProjectCashFlowReportLoading;
  13. export default GenerateEX02ProjectCashFlowReportWrapper;