kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
13 lines (10 loc) • 435 B
TypeScript
import React from 'react';
import {SetCloudProviderPayload} from '../../actions';
import {Provider} from '../../cloud-providers';
export type ProviderModalContainerProps = {
cloudProviders?: Provider[];
currentProvider?: string;
onSetCloudProvider: (provider: SetCloudProviderPayload) => void;
};
export const ProviderModalContainer: React.FunctionComponent<ProviderModalContainerProps>;
export default ProviderModalContainer;