// store/atoms/mapAtom.js import { atom } from "recoil"; export const mapAtom = atom({ key: "mapAtom", // Ein eindeutiger Schlüssel für Recoil default: null, // Standardwert ist null, da die Karte noch nicht erstellt wurde });