{title}
{description}
{actions}
: null}
import type { ReactNode } from "react"; import { Sidebar } from "@/components/Sidebar"; export function AppShell({ title, description, actions, children, }: { title: string; description: string; actions?: ReactNode; children: ReactNode; }) { return (
); }