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

9 lines
162 B
TypeScript
Raw Normal View History

2024-03-07 03:33:43 +00:00
import ListNews from '@/components/detail/ListNews'
import React from 'react'
export default function ListNewsPage() {
return (
<ListNews />
)
}