'use client' import { FC, PropsWithChildren } from 'react' import { LazyMotion, domMax, m } from 'framer-motion' const MotionLazyProvider: FC = ({ children }) => ( {/* @ts-ignore */} {children} ) export default MotionLazyProvider