14 lines
265 B
TypeScript
14 lines
265 B
TypeScript
import AdminPanelLayout from "@/components/admin-panel/admin-panel-layout";
|
|
|
|
export default function DashboardLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<AdminPanelLayout>
|
|
<main>{children}</main>
|
|
</AdminPanelLayout>
|
|
);
|
|
}
|