export function BoolText(p: { val: boolean; positive: string; negative: string; }): React.ReactElement { return p.val ? ( {p.positive} ) : ( {p.negative} ); }