zzz / frontend /src /hooks /query /use-config.ts
ar08's picture
Upload 1040 files
246d201 verified
raw
history blame contribute delete
211 Bytes
import { useQuery } from "@tanstack/react-query";
import OpenHands from "#/api/open-hands";
export const useConfig = () =>
useQuery({
queryKey: ["config"],
queryFn: OpenHands.getConfig,
});