Não pode escolher mais do que 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
|
- 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;
|