Files
Minikura/apps/web/app/dashboard/layout.tsx

6 lines
202 B
TypeScript
Raw Normal View History

2026-02-13 15:52:13 +07:00
import { DashboardLayout } from "@/components/dashboard-layout";
export default function Layout({ children }: { children: React.ReactNode }) {
return <DashboardLayout>{children}</DashboardLayout>;
}