1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
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<MainProps> = ({ children, ...props }) => { return <main {...props}>{children}</main>; }; export default Main;