import * as React from "react"; import { Col, ToolTip } from "."; import { t } from "../i18next_wrapper"; import { ErrorBoundary } from "../error_boundary"; interface LeftPanelProps { children?: React.ReactNode; className: string; title: string; helpText?: string; width?: number; } export function LeftPanel(props: LeftPanelProps) { return

{t(props.title)}

{props.helpText && } {props.children}
; }