aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/main.tsx
blob: 4549328c9bdba0f60062e36a95c2b172867f2947 (plain)
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;