UNPKG

kepler.gl

Version:

kepler.gl is a webgl based application to visualize large scale location data in the browser

11 lines (7 loc) 234 B
import {createContext, RefType} from 'react'; export const RootContext = createContext<RefType<any> | null>(null); const KeplerGlContext = createContext({ selector: state => state, id: 'map' }); export default KeplerGlContext;