10 lines
222 B
JavaScript
10 lines
222 B
JavaScript
// /redux/slices/poiLayerVisibleSlice.js
|
|
// Recoil atom for the visibility of the POI layer
|
|
//
|
|
import { atom } from "recoil";
|
|
|
|
export const poiLayerVisibleState = atom({
|
|
key: "poiLayerVisibleState",
|
|
default: true,
|
|
});
|