suna/frontend/src/app/dashboard/layout.tsx

26 lines
504 B
TypeScript

"use client"
import { SidebarLeft } from "@/components/sidebar/sidebar-left"
import {
SidebarInset,
SidebarProvider,
} from "@/components/ui/sidebar"
interface DashboardLayoutProps {
children: React.ReactNode
}
export default function DashboardLayout({
children,
}: DashboardLayoutProps) {
return (
<SidebarProvider>
<SidebarLeft />
<SidebarInset>
<div className="bg-background">
{children}
</div>
</SidebarInset>
</SidebarProvider>
)
}