Files
beenvoice-web/src/app/dashboard/layout.tsx
T

10 lines
220 B
TypeScript

import { DashboardShell } from "~/components/layout/dashboard-shell";
export default function DashboardLayout({
children,
}: {
children: React.ReactNode;
}) {
return <DashboardShell>{children}</DashboardShell>;
}