forked from UKSOURCE/hailearning.edu.vn
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
import Breadcrumb from "./components/Breadcrumb";
|
|
import NewsSection from "./components/NewsSection";
|
|
|
|
export default function NewsPage() {
|
|
return (
|
|
<>
|
|
<Breadcrumb />
|
|
<NewsSection />
|
|
</>
|
|
);
|
|
} |