import { motion } from 'framer-motion' import { cn } from '@/lib/utils' import type { FC, ReactNode } from 'react' type Props = { children: ReactNode className?: string } const MainArea: FC = ({ children, className }) => ( {children} ) export default MainArea