Mit rechte Maustaste Link in localStorage speichern in setupPolylines.js

This commit is contained in:
ISA
2024-09-04 15:50:27 +02:00
parent 421844611f
commit f8e35cece6
7 changed files with 712 additions and 7 deletions

7
store/atoms/mapAtom.js Normal file
View File

@@ -0,0 +1,7 @@
// 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
});