UNPKG

kepler.gl

Version:

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

12 lines (9 loc) 317 B
import {Component} from 'react'; import KeplerGlContext from 'components/context'; import {ConnectedComponent} from 'react-redux'; interface ContextSelector { (state: any, context: any): KeplerGlContext; } export default function withLocalSelector<P, S>( component: ConnectedComponent<P, S> ): Component<P, S>;