Files
Minikura/apps/web/app/dashboard/layout.tsx
2026-02-13 15:52:13 +07:00

6 lines
202 B
TypeScript

import { DashboardLayout } from "@/components/dashboard-layout";
export default function Layout({ children }: { children: React.ReactNode }) {
return <DashboardLayout>{children}</DashboardLayout>;
}