import React from 'react'; import { motion, AnimatePresence } from 'framer-motion'; export default function SlideContainer({ children, slideKey }) { return (
{children}
); }