useAnimation
import * as React from 'react'
import { Frame, useAnimation } from 'framer'
export function MyComponent(props) {
const controls = useAnimation()
controls.start({
x: 100,
transition: { duration: 0.5 },
})
return <Frame animate={controls} />
}Last updated