9 lines
218 B
JavaScript
9 lines
218 B
JavaScript
// /store/atoms/poiLayerVisibleState.js
|
|
// Recoil atom for the visibility of the POI layer
|
|
import { atom } from "recoil";
|
|
|
|
export const poiLayerVisibleState = atom({
|
|
key: "poiLayerVisibleState",
|
|
default: true,
|
|
});
|