import './Main.scss' import type { PropsWithChildren } from 'react' export interface MainProps { className?: string } export default function Main({ children, className = '' }: PropsWithChildren) { return (
{children}
) }