// /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, });