import { ArticleDetail } from "@/app/types/article"; import Link from "next/link"; import ArticleHeading from "@/app/components/ArticleHeading"; const ArticleRender = ({ article }: { article: ArticleDetail }) => { return (
上一篇 {article.prev?.title ?? "没有了"}
下一篇 {article.next?.title ?? "没有了"}
); }; export default ArticleRender;