import type { ReactNode } from "react"; import { DashboardNav } from "@/components/DashboardNav"; import { LegalFooter } from "@/components/LegalFooter"; type Props = { channelTitle?: string | null; children: ReactNode; }; export function DashboardShell({ channelTitle, children }: Props) { return (
{children}
); }