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