init project portal web
This commit is contained in:
15
app/main/layout.tsx
Normal file
15
app/main/layout.tsx
Normal file
@ -0,0 +1,15 @@
|
||||
import MainLayout from "@/components/layout/main-layout"
|
||||
|
||||
interface Props {
|
||||
children: React.ReactNode
|
||||
}
|
||||
|
||||
const Layout = ({
|
||||
children
|
||||
}: Props) => {
|
||||
return (
|
||||
<MainLayout>{children}</MainLayout>
|
||||
)
|
||||
}
|
||||
|
||||
export default Layout
|
||||
Reference in New Issue
Block a user