import { FC } from 'react'; export type MainProps = { /** * Set additional classnames to the main element. */ className?: string; /** * The main wrapper id. */ id: string; }; /** * Main component * * Render a main element. */ const Main: FC = ({ children, ...props }) => { return
{children}
; }; export default Main;