23 lines
659 B
TypeScript
23 lines
659 B
TypeScript
// ============================================================================
|
|
// Dashboard Layout
|
|
// ============================================================================
|
|
|
|
import { AppSidebar } from "@/components/layout/app-sidebar";
|
|
import { SidebarInset, SidebarProvider } from "@/components/ui/sidebar";
|
|
import { ProtectedRoute } from "@/components/auth/protected-route";
|
|
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<ProtectedRoute>
|
|
<SidebarProvider>
|
|
<AppSidebar />
|
|
<SidebarInset>{children}</SidebarInset>
|
|
</SidebarProvider>
|
|
</ProtectedRoute>
|
|
);
|
|
}
|