9 lines
304 B
JavaScript
9 lines
304 B
JavaScript
// store/atoms/poiState.js
|
|
//Ist gedacht um ausgewählte Poi Informationen zu speichern und zu PoiUpdateModal.js zu übergeben
|
|
import { atom } from "recoil";
|
|
|
|
export const selectedPoiState = atom({
|
|
key: "poiState", // Einzigartiger Key (mit der gesamten Anwendung)
|
|
default: null, // Standardwert
|
|
});
|