I was working on a series of components yesterday for a new page we’re building out. I had two components that were structured broadly like this: const styles = {
root: {
...styles,
'&:hover $link': {
...styles,
},
},
link: {
...styles,
},
} const Link = withStyles(styles)(({ classes })…