How can you animate an element on hover using Framer Motion in React?
<motion.div whileHover={{ scale: 1.2 }}>
Hover over me!
</motion.div>
whileHover animates the scale of the element on hover.
whileTap animates the scale of the element on hover.
initial animates the scale of the element on hover.
animate animates the scale of the element on hover.
This question is part of this quiz :
Animations and Transitions in React