文章推荐功能

This commit is contained in:
tangly1024
2021-11-05 13:58:53 +08:00
parent 15fb499f44
commit 299866d570
4 changed files with 56 additions and 5 deletions

View File

@@ -74,7 +74,7 @@ const BlogPostListScroll = ({ posts = [], tags, currentSearch, currentCategory,
{/* 文章列表 */}
<div className='grid 3xl:grid-cols-3 md:grid-cols-2 grid-cols-1 gap-5'>
{postsToShow.map(post => (
<BlogPostCard key={post.id} post={post} tags={tags} />
<BlogPostCard key={post.id} post={post} />
))}
</div>