Add one line of code to create a whileHover
animation between two states.
export function Example() {
return (
<motion.div
style={{
width: 150,
height: 150,
borderRadius: 30,
backgroundColor: "#fff"
}}
whileHover={{ scale: 0.8 }}
/>
);
}