Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- import { fetchProjectsCashFlow } from "@/app/api/cashflow";
- import React from "react";
- import ProgressCashFlowSearch from "./ProgressCashFlowSearch";
- import ProgressCashFlowSearchSearchLoading from "./ProgressCashFlowSearchLoading";
-
- interface SubComponents {
- Loading: typeof ProgressCashFlowSearchSearchLoading;
- }
-
- const ProgressCashFlowSearchWrapper: React.FC & SubComponents = async () => {
- const clentprojects = await fetchProjectsCashFlow();
-
- return <ProgressCashFlowSearch projects={clentprojects} />;
- };
-
- ProgressCashFlowSearchWrapper.Loading = ProgressCashFlowSearchSearchLoading;
-
- export default ProgressCashFlowSearchWrapper;
|