web-humas-fe/app/news/detail/[id]/page.tsx

7 lines
154 B
TypeScript
Raw Normal View History

2024-11-05 06:15:40 +00:00
import DetailPage from "@/components/main/detail/new-detail";
import React from "react";
2024-02-19 08:39:35 +00:00
export default function NewsPage() {
2024-11-05 06:15:40 +00:00
return <DetailPage />;
2024-02-19 08:39:35 +00:00
}