mirror of https://github.com/kortix-ai/suna.git
26 lines
504 B
TypeScript
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>
|
|
)
|
|
}
|