forked from UKSOURCE/hailearning.edu.vn
18 lines
423 B
TypeScript
18 lines
423 B
TypeScript
import Breadcrumb from "@/app/components/Breadcrumb";
|
|
import NewsDetailsSection from "./components/NewsDetailsSection";
|
|
|
|
interface BlogDetailsPageProps {
|
|
params: {
|
|
slug: string;
|
|
};
|
|
}
|
|
|
|
export default function BlogDetailsPage(_props: BlogDetailsPageProps) {
|
|
return (
|
|
<>
|
|
<Breadcrumb title="Blog Details" current="Blog Details" />
|
|
<NewsDetailsSection />
|
|
</>
|
|
);
|
|
}
|