import React, { ReactNode } from 'react' import { motion } from 'framer-motion' interface AnimatedScrollWrapperProps { children: ReactNode } const AnimatedScrollWrapper = ({ children }: AnimatedScrollWrapperProps) => { return ( {children} ) } export default AnimatedScrollWrapper