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