how to add hover effect in css code example
Example 1: css hover
.a:hover{background-color: black;}
Example 2: how to add hover effect in emotion
const Button = styled.div`
background-color: green;
color: white;
/* like scss, you can add hover effect */
&:hover {
display: block;
}
`;