10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
|
|
import { AppShell } from "@/components/layout/app-shell";
|
||
|
|
|
||
|
|
export default function DashboardLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return <AppShell>{children}</AppShell>;
|
||
|
|
}
|