import { prefixes } from '../../utils/constants'; import { mapStatusInfo } from '../../utils/staticUI'; interface InfoCstStatusProps { title?: string } function InfoCstStatus({ title }: InfoCstStatusProps) { return (
{ title &&

{title}

} { [... mapStatusInfo.values()].map( (info, index) => { return (

{info.text} - {info.tooltip}

); })}
); } export default InfoCstStatus;