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

7 lines
153 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-07 03:33:43 +00:00
export default function ListNewsPage() {
2024-11-05 06:15:40 +00:00
return <ListNews />;
2024-03-07 03:33:43 +00:00
}