summaryrefslogtreecommitdiffstats
path: root/src/components/Main/Main.tsx
blob: cc47443119365679db73f5c0e878fe96ceb1fd21 (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 className={styles.wrapper}>
      <div className={styles.body}>{children}</div>
    </main>
  );
};

export default Main;