How do I make all the fields in a table header bol...
# react
d
How do I make all the fields in a table header bold? I tried these methods. TableHead { TableRow { for (reportData in ReportSummaryEnums.values()) { className = styles._SUMMARY_BUTTONS_HOLDER_.cssClass TableCell { +reportData.description } } } } TableHead { TableRow { for (reportData in ReportSummaryEnums.values()) { FormatBold { TableCell { +reportData.description } } } } }