kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
12 lines (9 loc) • 418 B
TypeScript
import React from 'react';
// TODO - this seems too coupled, better define a type here and adapt FileLoadingProgress to it in the app?
import {FileLoadingProgress} from 'reducers/vis-state-updaters';
export type FileUploadProgressProps = {
fileLoadingProgress: FileLoadingProgress;
theme: object;
};
const FileUploadProgress: React.FunctionComponent<FileUploadProgressProps>;
export default FileUploadProgress;