I have a parent div and two child divs, I want to apply CSS to the second child div when I hover on the first child div. This is the structure of the render method.
<div className={classes.parent}>
<div className={classes.child1}></div>
<div className={classes.child2}></div>
</div>
What is the material UI's makeStyles syntax for selecting child classes on hover?