8 lines
197 B
JavaScript
8 lines
197 B
JavaScript
// store/poiTypState.js
|
|
import { atom } from "recoil";
|
|
|
|
export const poiTypState = atom({
|
|
key: "poiTypState", // eindeutiger Schlüssel
|
|
default: [], // Initialer Standardwert, leeres Array
|
|
});
|