import { articleDetail } from "@/app/_services/articles"; import ArticleRender from "@/app/_components/ArticleRender"; import ArticleWithBreadcrumb from "@/app/_components/ArticleWithBreadcrumb"; export default async function Article({ params, }: { params: { articleId: string; }; }) { const data = await articleDetail({ id: params.articleId }); return ( ); }