6 lines
137 B
TypeScript
6 lines
137 B
TypeScript
|
|
import { atom } from "jotai";
|
||
|
|
|
||
|
|
import L from "leaflet";
|
||
|
|
|
||
|
|
export const leafletLayerInstancesAtom = atom<Map<string, L.Layer>>(new Map());
|