Files
var-monorepo/apps/dispatch/app/_store/stationsStore.ts
2025-03-14 00:18:06 -07:00

10 lines
215 B
TypeScript

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