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 ? ( {article.prev.title} ) : ( 没有了 )}
下一篇 {article.next ? ( {article.next.title} ) : ( 没有了 )}
); }; export default ArticleRender;