What is the best way to handle hovers in styled-components. I have a wrapping element that when hovered will reveal a button.
I could implement some state on the com
My solution is
const Content = styled.div` &:hover + ${ImgPortal} { &:after { opacity: 1; } } `;