import { LazyMotion } from 'motion/react'; import type { PropsWithChildren } from 'react'; const loadFeatures = () => import('./animateFeature').then(res => res.default); const LazyAnimate = ({ children }: PropsWithChildren) => { return {children}; }; export default LazyAnimate;