A package that lets you animate things within React applications.
npm install framer-motion
import { motion } from "framer-motion"
// basic example
import { motion } from "framer-motion";
<motion.div
initial={{ opacity: 0 }}
animate={{ opacity: 1, x: 500, scale: 2 }}
/>;