選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
642 B

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