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