summaryrefslogtreecommitdiff
path: root/src/app/(mobile-screen)/layout.tsx
blob: f44be2c692f01516f46e669e325185fd667f17bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import ScreenContainer from '@/common/components/ScreenContainer'
import React from 'react'

const layout = ({ children }: { children: React.ReactNode }) => {
  return (
    <ScreenContainer>
      {children}
    </ScreenContainer>
  )
}

export default layout