forked from UKSOURCE/hailearning.edu.vn
11 lines
265 B
TypeScript
11 lines
265 B
TypeScript
import Breadcrumb from "@/app/components/Breadcrumb";
|
|
import NewsSection from "./components/NewsSection";
|
|
|
|
export default function NewsPage() {
|
|
return (
|
|
<>
|
|
<Breadcrumb title="Blog Stardard" current="Blog Stardard" />
|
|
<NewsSection />
|
|
</>
|
|
);
|
|
} |