kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
12 lines (11 loc) • 336 B
TypeScript
import React, { Component } from 'react';
import { BaseProps } from './base';
export default class DataTable extends Component<Partial<BaseProps>> {
static displayName: string;
static defaultProps: {
height: string;
viewBox: string;
predefinedClassName: string;
};
render(): React.JSX.Element;
}