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