Files
CRM_ENVR/src/app/(dashboard)/layout.tsx
T
2026-06-17 13:51:22 +02:00

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>
}