mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-19 04:19:25 +00:00
23 lines
No EOL
783 B
TypeScript
23 lines
No EOL
783 B
TypeScript
import SessionProvider from '@components/Contexts/SessionContext'
|
|
import LeftMenu from '@components/Dashboard/UI/LeftMenu'
|
|
import AdminAuthorization from '@components/Security/AdminAuthorization'
|
|
import React from 'react'
|
|
|
|
function DashboardLayout({ children, params }: { children: React.ReactNode, params: any }) {
|
|
return (
|
|
<>
|
|
<SessionProvider>
|
|
<AdminAuthorization authorizationMode="page">
|
|
<div className='flex'>
|
|
<LeftMenu />
|
|
<div className='flex w-full'>
|
|
{children}
|
|
</div>
|
|
</div>
|
|
</AdminAuthorization>
|
|
</SessionProvider>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export default DashboardLayout |