With a repeat of Infinity, the animation will never end.
repeat
Infinity
export default function CC_04_Repeat(props) { return ( <div> <motion.div style={{ width: 150, height: 150, borderRadius: 30, backgroundColor: "#fff", }} animate={{ rotate: 360 }} transition={{ ease: "linear", duration: 2, repeat: Infinity }} /> </div> ) }
export function Repeat(Component): ComponentType { return (props) => { return ( <Component {...props} animate={{ rotate: 360 }} transition={{ ease: "linear", duration: 2, repeat: Infinity }} /> ) } }
Click the checkbox to allow us to send you emails.
We use Mailchimp as our marketing platform. By clicking below to subscribe, you acknowledge that your information will be transferred to Mailchimp for processing per their Privacy Policy and Terms.
You must be logged in to post a comment.