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

14 lines
250 B
TypeScript
Raw Normal View History

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