8 lines
223 B
TypeScript
8 lines
223 B
TypeScript
import { getAllCenters } from "@/services/apis/center.api";
|
|
import { useQuery } from "@tanstack/react-query";
|
|
|
|
|
|
export const useGetAllCenters = () => useQuery({
|
|
queryKey:["get-all-centers"],
|
|
queryFn:getAllCenters
|
|
}) |