Currently attempting to adjust the background color of a Grid section when the mouse enters. I've made some progress, but now I seem to be stuck. My current approach involves calling a function to update the background color on mouse enter.
const [isShown, setIsShown] = React.useState(false)
function modifyBackground(e) {
e.target.style.background = 'red';
<Grid
onMouseEnter={() => setIsShown(true)}
onMouseLeave={() => setIsShown(false)}
container {...isShown && {modifyBackground}} >
GRID ITEM
</Grid>