2024-11-05 06:15:40 +00:00
|
|
|
import { PPIDAdminLayout } from "@/components/layout/ppid-admin-layout";
|
2024-03-04 08:36:22 +00:00
|
|
|
|
|
|
|
|
export default function LayoutAdmin({
|
2024-11-05 06:15:40 +00:00
|
|
|
children,
|
2024-03-04 08:36:22 +00:00
|
|
|
}: {
|
2024-11-05 06:15:40 +00:00
|
|
|
children: React.ReactNode;
|
2024-03-04 08:36:22 +00:00
|
|
|
}) {
|
2024-11-05 06:15:40 +00:00
|
|
|
return <PPIDAdminLayout>{children}</PPIDAdminLayout>;
|
2024-03-04 08:36:22 +00:00
|
|
|
}
|