I've found some css styling that I would like to add to a Material-Table component in my React app, so it highlights the hovered row. See it below:
tr:hover {
background: gray !important;
}
How can I apply this to my component without using an external css file? Is it using some inline styling, or useStyles or something else? I'm a bit weak on this area.