base commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { Outlet } from 'react-router';
|
||||
import { AdminSidebar } from '../components/layout/AdminSidebar';
|
||||
|
||||
export function AdminLayout() {
|
||||
return (
|
||||
<div className="flex min-h-screen bg-background">
|
||||
<AdminSidebar />
|
||||
<main className="flex-1 p-8">
|
||||
<Outlet />
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user