Files
edr-platform/apps/edr-passenger-web/portal/src/hooks/useStations.ts
Michael Abebe 1c5ee19388 chore: fmt
2026-05-12 16:50:18 +03:00

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,
});