13 lines
382 B
TypeScript
13 lines
382 B
TypeScript
import { Sidebar } from "@/components/sidebar";
|
|
import { ReactNode } from "react";
|
|
|
|
export default function DashboardLayout({ children }: { children: ReactNode }) {
|
|
return (
|
|
<div className="flex h-screen overflow-hidden bg-background text-foreground">
|
|
<Sidebar />
|
|
<main className="flex-1 overflow-y-auto w-full">
|
|
{children}
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|