summaryrefslogtreecommitdiff
path: root/src/common/components/ScreenContainer/index.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/components/ScreenContainer/index.tsx')
-rw-r--r--src/common/components/ScreenContainer/index.tsx15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/common/components/ScreenContainer/index.tsx b/src/common/components/ScreenContainer/index.tsx
new file mode 100644
index 0000000..60676ea
--- /dev/null
+++ b/src/common/components/ScreenContainer/index.tsx
@@ -0,0 +1,15 @@
+import styles from "./screen-container.module.css"
+
+interface Props {
+ children: React.ReactNode
+}
+
+const ScreenContainer = ({ children }: Props) => {
+ return (
+ <div className={styles.screen}>
+ {children}
+ </div>
+ )
+}
+
+export default ScreenContainer \ No newline at end of file