import { Alert, Tab, Tabs } from 'react-bootstrap'; import QueryHistory from './QueryHistory'; import ResultSet from './ResultSet'; import React from 'react'; const SouthPane = function (props) { let results =
; if (props.latestQuery) { if (props.latestQuery.state === 'running') { results = (
);
} else if (props.latestQuery.state === 'failed') {
results =