pse2_ff/project/frontend/src/util/query.ts

9 lines
249 B
TypeScript

import { queryOptions } from "@tanstack/react-query";
import { fetchKPI } from "./api";
export const kpiQueryOptions = (pitchBookId: string) =>
queryOptions({
queryKey: ["pitchBookKPI", pitchBookId],
queryFn: () => fetchKPI(pitchBookId),
});