orchidmap-front/src/utils/context.ts
2021-04-08 16:25:25 +07:00

5 lines
226 B
TypeScript

import React from 'react';
import { Map, TileLayer } from 'leaflet';
export const MapContext = React.createContext<Map | undefined>(undefined);
export const TileContext = React.createContext<TileLayer | undefined>(undefined)