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

8 lines
121 B
TypeScript
Raw Normal View History

2025-02-14 16:11:51 +00:00
export default function PoldaNewsLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}