Files
gridpilot.gg/apps/website/app/dashboard/layout.tsx
2026-01-14 10:51:05 +01:00

9 lines
235 B
TypeScript

import { DashboardLayoutWrapper } from '@/ui/DashboardLayoutWrapper';
export default function DashboardLayout({
children,
}: {
children: React.ReactNode;
}) {
return <DashboardLayoutWrapper>{children}</DashboardLayoutWrapper>;
}