From be0f537dc4fe384eef09436833c6407e6482c16d Mon Sep 17 00:00:00 2001 From: Rafi Zadanly Date: Thu, 9 Nov 2023 15:40:16 +0700 Subject: Initial commit --- src/app/(mobile-screen)/layout.tsx | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/app/(mobile-screen)/layout.tsx (limited to 'src/app/(mobile-screen)/layout.tsx') 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 ( + + {children} + + ) +} + +export default layout \ No newline at end of file -- cgit v1.2.3