summaryrefslogtreecommitdiff
path: root/src/app/(mobile-screen)/layout.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/(mobile-screen)/layout.tsx')
-rw-r--r--src/app/(mobile-screen)/layout.tsx12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/app/(mobile-screen)/layout.tsx b/src/app/(mobile-screen)/layout.tsx
new file mode 100644
index 0000000..f44be2c
--- /dev/null
+++ b/src/app/(mobile-screen)/layout.tsx
@@ -0,0 +1,12 @@
+import ScreenContainer from '@/common/components/ScreenContainer'
+import React from 'react'
+
+const layout = ({ children }: { children: React.ReactNode }) => {
+ return (
+ <ScreenContainer>
+ {children}
+ </ScreenContainer>
+ )
+}
+
+export default layout \ No newline at end of file