import { FC, ReactNode } from "react"; import { motion, AnimatePresence, useReducedMotion } from "framer-motion"; interface TransitionProps { children?: ReactNode; className?: string; } const Transition: FC = ({ children, className }) => { const shouldReduceMotion = useReducedMotion(); return ( {children} ); }; export default Transition;