import { AnimatePresence, motion } from 'framer-motion'; import { useState } from 'react'; function IndexEnterExit() { const [show, setShow] = useState(true); return ( {show && ( <>
)}
); } export default IndexEnterExit;