import { ReactNode } from 'react'; import { Box } from './Box'; import { Container } from './Container'; export interface MainContentProps { children: ReactNode; maxWidth?: 'sm' | 'md' | 'lg' | 'xl' | 'full' | '7xl'; } export const MainContent = ({ children, maxWidth = 'xl' }: MainContentProps) => { return ( {children} ); };