const Two = () => ( | |
<motion.div | |
className="rectangle" | |
initial={{ | |
opacity: 0, | |
y: 50 | |
}} | |
animate={{ | |
opacity: 1, | |
y: 0 | |
}} | |
/> | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment