20 lines
451 B
TypeScript
20 lines
451 B
TypeScript
import { ReactNode } from "react";
|
|
import { AppSidebar } from "./AppSidebar";
|
|
|
|
interface MainLayoutProps {
|
|
children: ReactNode;
|
|
}
|
|
|
|
export function MainLayout({ children }: MainLayoutProps) {
|
|
return (
|
|
<div className="flex min-h-screen w-full bg-background">
|
|
<AppSidebar />
|
|
<main className="flex-1 overflow-auto">
|
|
<div className="p-4 lg:p-8 pt-16 lg:pt-8">
|
|
{children}
|
|
</div>
|
|
</main>
|
|
</div>
|
|
);
|
|
}
|