2025-02-23 10:22:51 +08:00
|
|
|
import type { PropsWithChildren } from 'react'
|
|
|
|
|
|
2025-02-23 12:18:10 +08:00
|
|
|
import { Navbar } from './navbar'
|
|
|
|
|
import { Sidebar } from './sidebar'
|
|
|
|
|
|
2025-02-23 10:22:51 +08:00
|
|
|
export const AdminDashboardLayout = (properties: PropsWithChildren) => {
|
|
|
|
|
const { children } = properties
|
|
|
|
|
return (
|
|
|
|
|
<div className="grid">
|
2025-02-23 12:18:10 +08:00
|
|
|
<Navbar />
|
2025-02-23 10:22:51 +08:00
|
|
|
<div className="flex">
|
2025-02-23 12:18:10 +08:00
|
|
|
<Sidebar />
|
2025-02-23 10:22:51 +08:00
|
|
|
<div>{children}</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
)
|
|
|
|
|
}
|