import { articleDetail } from "@/app/api/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 ( ); }