import * as React from "react"; import { t } from "../i18next_wrapper"; interface Props { onClick(): void; title: string; expanded: boolean; } export const ExpandableHeader = (props: Props) => { const { onClick, title, expanded } = props; const icon_string = expanded ? "minus" : "plus"; const nbwhitespace = title != ""; return

{t(title)} {nbwhitespace && "\u00A0\u00A0" } []

; };