mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-30 08:48:11 +00:00
10 lines
231 B
TypeScript
10 lines
231 B
TypeScript
import { useQuery } from "@tanstack/react-query";
|
|
|
|
import { stationsService } from "../services/stations.service";
|
|
|
|
export const useStations = () =>
|
|
useQuery({
|
|
queryKey: ["stations"],
|
|
queryFn: stationsService.list,
|
|
});
|