feat: implement admin dashboard layout and update authentication flow
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import type { PropsWithChildren } from 'react'
|
||||
|
||||
export const AdminDashboardLayout = (properties: PropsWithChildren) => {
|
||||
const { children } = properties
|
||||
return (
|
||||
<div className="grid">
|
||||
<div>Navbar</div>
|
||||
<div className="flex">
|
||||
<div>Sidebar</div>
|
||||
<div>{children}</div>
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user