blob: d92a5c7495af0de071b04ba4ed9dbdba450929dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import { FC, ReactNode } from 'react';
export type MainProps = {
/**
* The main body.
*/
children: ReactNode;
/**
* 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;
|