16 lines
283 B
TypeScript
16 lines
283 B
TypeScript
"use client";
|
|
|
|
import { DashboardLayout } from '@/components/layout/DashboardLayout';
|
|
|
|
export default function SuperAdminLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<DashboardLayout>
|
|
{children}
|
|
</DashboardLayout>
|
|
);
|
|
}
|