web-humas-fe/app/e-majalah-polri/detail/[id]/layout.tsx

10 lines
191 B
TypeScript
Raw Normal View History

2024-11-05 06:15:40 +00:00
import { HumasLayout } from "@/components/layout/humas-layout";
2024-03-04 08:36:22 +00:00
export default function DetailEMajalahLayout({
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-12-17 10:19:52 +00:00
return <>{children}</>;
2024-03-04 08:36:22 +00:00
}