summaryrefslogtreecommitdiffstats
path: root/src/components/Main/Main.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Main/Main.tsx')
-rw-r--r--src/components/Main/Main.tsx7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/components/Main/Main.tsx b/src/components/Main/Main.tsx
index 3705c83..cc47443 100644
--- a/src/components/Main/Main.tsx
+++ b/src/components/Main/Main.tsx
@@ -1,7 +1,12 @@
import { FunctionComponent } from 'react';
+import styles from './Main.module.scss';
const Main: FunctionComponent = ({ children }) => {
- return <main>{children}</main>;
+ return (
+ <main className={styles.wrapper}>
+ <div className={styles.body}>{children}</div>
+ </main>
+ );
};
export default Main;