web-humas-fe/app/news/[polda-name]/layout.tsx

14 lines
251 B
TypeScript

import { HumasLayout } from "@/components/layout/HumasLayout";
export default function PoldaNewsLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<HumasLayout>
{children}
</HumasLayout>
);
}