import { FC, HTMLAttributes, ReactNode } from 'react'; export type MainProps = HTMLAttributes & { /** * The main body. */ children: ReactNode; }; /** * Main component * * Render a main element. */ export const Main: FC = ({ children, ...props }) => { return
{children}
; };