web-humas-fe/app/e-majalah-polri/daftar-majalah/layout.tsx

10 lines
207 B
TypeScript
Raw Normal View History

2024-11-05 06:15:40 +00:00
import { HumasLayout } from "@/components/layout/humas-layout";
2024-03-02 15:25:48 +00:00
export default function EMajalahLayout({
2024-11-05 06:15:40 +00:00
children,
2024-03-02 15:25:48 +00:00
}: {
2024-11-05 06:15:40 +00:00
children: React.ReactNode;
2024-03-02 15:25:48 +00:00
}) {
2024-11-05 06:15:40 +00:00
return <HumasLayout>{children}</HumasLayout>;
2024-03-02 15:25:48 +00:00
}