Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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;
|