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.
 
 

19 rader
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;