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