import Card from './Card' import CategoryGroup from './CategoryGroup' import LatestPostsGroup from './LatestPostsGroup' import TagGroups from './TagGroups' import Catalog from './Catalog' import { InfoCard } from './InfoCard' export default function SideRight (props) { const { post, postCount, currentCategory, categories, latestPosts, tags, currentTag, showCategory, showTag } = props return (
统计
文章数:
{postCount}
访问量:
访客数:
{showCategory && (
分类
)} {showTag && ( )} {latestPosts && } {post && post.toc && ( )}
) }