Files
nodeMap/store/atoms/gisSystemState.js
2024-08-10 10:32:37 +02:00

8 lines
242 B
JavaScript

// Pfad: store/atoms/gisSystemtate.js
import { atom } from "recoil";
export const gisSystemStaticState = atom({
key: "gisSystemStatic", // Eindeutiger Schlüssel (innerhalb des Projekts)
default: [], // Standardwert (Anfangszustand)
});