web-humas-fe/app/news/all/layout.tsx

14 lines
249 B
TypeScript

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