forked from UKSOURCE/hailearning.edu.vn
18 lines
562 B
TypeScript
18 lines
562 B
TypeScript
import NewsDetailsContent from "./NewsDetailsContent";
|
|
import Sidebar from "@/app/blog/components/Sidebar";
|
|
|
|
export default function NewsDetailsSection() {
|
|
return (
|
|
<section className="news-standard-section section-padding fix">
|
|
<div className="container">
|
|
<div className="news-details-wrapper">
|
|
<div className="row g-4">
|
|
<NewsDetailsContent />
|
|
<Sidebar />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
);
|
|
}
|