Files
nodeMap/states/mapLayersState.js
2024-04-23 08:17:58 +02:00

25 lines
587 B
JavaScript

// states/mapLayersState.js
import { atom } from "recoil";
export const mapLayersState = atom({
key: "mapLayersState", // Eindeutiger Schlüssel für das Atom
default: {
// Standardwerte für jeden Layer
show_TALAS: false,
show_ECI: false,
show_ULAF: false,
show_GSMModem: false,
show_CiscoRouter: false,
show_WAGO: false,
show_Siemens: false,
show_OTDR: false,
show_WDM: false,
show_GMA: false,
show_Messstellen: false,
show_TALASICL: false,
show_DAUZ: false,
show_SMSFunkmodem: false,
show_Sonstige: false,
},
});