'use client' import { FC } from 'react' import Box from '@mui/material/Box' import { m } from 'framer-motion' import { varContainer } from '../variants' import { MotionContainerProps } from './types' export const MotionContainer: FC = ({ animate, action = false, children, ...other }) => { if (action) { return ( {children} ) } return ( {children} ) } export default MotionContainer