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