A library for animating React components with ease.
pnpm add motion
import { motion } from 'motion'; function MyComponent() { return ( <motion.div animate={{ x: 100 }}>This is a component that is animated.</motion.div> ); }