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