web-humas-fe/app/portal-ppid/admin/layout.tsx

10 lines
221 B
TypeScript
Raw Normal View History

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
}