mirror of
https://github.com/khairul169/garage-webui.git
synced 2025-06-18 06:39:32 +07:00
11 lines
264 B
TypeScript
11 lines
264 B
TypeScript
|
import api from "@/lib/api";
|
||
|
import { useQuery } from "@tanstack/react-query";
|
||
|
import { GetBucketRes } from "./types";
|
||
|
|
||
|
export const useBuckets = () => {
|
||
|
return useQuery({
|
||
|
queryKey: ["buckets"],
|
||
|
queryFn: () => api.get<GetBucketRes>("/buckets"),
|
||
|
});
|
||
|
};
|