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

13 lines
289 B
TypeScript
Raw Normal View History

2025-02-14 16:11:51 +00:00
import ListNews from "@/components/main/detail/list-news";
import React from "react";
2025-08-29 13:01:29 +00:00
import HumasLayout from "@/components/layout/humas-layout";
2025-02-14 16:11:51 +00:00
export default function PoldaNewsPage() {
// return <ListNews />;
return (
<HumasLayout>
<ListNews />
</HumasLayout>
);
}