8 lines
242 B
JavaScript
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)
|
|
});
|