Files
uldp.edu.vn/app/blog/components/NewsSection.tsx
2026-02-02 13:41:45 +07:00

17 lines
421 B
TypeScript

import NewsList from "./NewsList";
import Sidebar from "./Sidebar";
export default function NewsSection() {
return (
<section className="news-standard-section section-padding fix">
<div className="container">
<div className="news-standard-wrapper">
<div className="row g-4">
<NewsList />
<Sidebar />
</div>
</div>
</div>
</section>
);
}