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