How can I style Materials' UI table header?
Maybe something like add classes with useStyle.
<TableHead >
<TableRow >
<TableCell hover>Dessert (100g serving)</TableCell>
<TableCell align="right">Calories</TableCell>
<TableCell align="right">Fat (g)</TableCell>
<TableCell align="right">Carbs (g)</TableCell>
<TableCell align="right">Protein (g)</TableCell>
</TableRow>
</TableHead>
I want to add style to the table header
Here's how to style all of your TableHeaders globally by adjusting your theme:
Note: this is in the MUI v4 format, the v5 format is slightly different. Check the MUI v4 -> v5 migration guide for details.