import * as React from "react"; import CollapseArrowIcon from "../../../../images/Collapse_arrow_14x14.svg"; import ExpandIcon from "../../../../images/Expand_14x14.svg"; import LoadingIndicatorIcon from "../../../../images/LoadingIndicator_3Squares.gif"; import { GraphVizComponent, GraphVizComponentProps } from "./GraphVizComponent"; interface MiddlePaneComponentProps { isTabsContentExpanded: boolean; toggleExpandGraph: () => void; isBackendExecuting: boolean; graphVizProps: GraphVizComponentProps; } export class MiddlePaneComponent extends React.Component { public render(): JSX.Element { return (
Graph
{this.props.isBackendExecuting && (
Loading Indicator
)}
); } }