import type { ReactNode } from "react"; import { Container } from "@/components/layout/container"; import { cn } from "@/lib/utils"; type AppShellProps = { sidebar: ReactNode; header: ReactNode; children: ReactNode; className?: string; }; export function AppShell({ sidebar, header, children, className }: AppShellProps) { return (
{header}
{children}
); }