8 lines
258 B
JavaScript
8 lines
258 B
JavaScript
// Pfad: store/gisStationState.js
|
|
import { atom } from "recoil";
|
|
|
|
export const gisStationsStaticDistrictState = atom({
|
|
key: "gisStationsStaticDistrict", // Eindeutiger Schlüssel (innerhalb des Projekts)
|
|
default: [], // Standardwert (Anfangszustand)
|
|
});
|