summaryrefslogtreecommitdiffstats
path: root/src/components/Main/Main.tsx
blob: 8b2e822375c59e3cb03ccc5ae867a23bd912b81b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { FunctionComponent } from 'react';
import styles from './Main.module.scss';

const Main: FunctionComponent = ({ children }) => {
  return (
    <main id="main" className={styles.wrapper}>
      <div className={styles.body}>{children}</div>
    </main>
  );
};

export default Main;