import React from 'react' import Link from 'next/link' import { useGlobal } from '@/lib/global' /** * 展示文章推荐 */ const RecommendPosts = ({ recommendPosts }) => { if (!recommendPosts) { return <> } const { locale } = useGlobal() return (
{locale.COMMON.RELATE_POSTS}
) } export default RecommendPosts