Files
var-monorepo/apps/dispatch/app/_store/stationsStore.ts
2025-04-15 19:43:06 -07:00

10 lines
213 B
TypeScript

import { create } from "zustand";
import { socket } from "../dispatch/socket";
export const stationStore = create((set) => {
return {
stations: [],
setStations: (stations: any) => set({ stations }),
};
});