14 lines
365 B
JavaScript
14 lines
365 B
JavaScript
import { atom } from "recoil";
|
|
|
|
// Atom für die Speicherung der mapId aus der URL
|
|
export const mapIdState = atom({
|
|
key: "mapIdState", // Eindeutiger Schlüssel (innerhalb des gesamten Projekts)
|
|
default: "10", // Standardwert
|
|
});
|
|
|
|
// Atom für die Speicherung der userId aus der URL
|
|
export const userIdState = atom({
|
|
key: "userIdState",
|
|
default: "484",
|
|
});
|