import type { JSX } from 'react' export type MainProps = React.HTMLProps export function Main({ children, className }: MainProps): JSX.Element { return
{children}
} export default Main