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

7 lines
154 B
TypeScript
Raw Normal View History

2024-11-05 06:15:40 +00:00
import ListNews from "@/components/main/detail/list-news";
import React from "react";
2024-03-11 15:46:08 +00:00
export default function PoldaNewsPage() {
2024-11-05 06:15:40 +00:00
return <ListNews />;
2024-03-11 15:46:08 +00:00
}