import InfoCard from './InfoCard' import { MenuList } from './MenuList' import SearchInput from './SearchInput' import Toc from './Toc' import { useGlobal } from '@/lib/global' import React from 'react' import Tabs from '@/components/Tabs' import Logo from './Logo' import Card from './Card' import CONFIG from '../config' import BLOG from '@/blog.config' import Live2D from '@/components/Live2D' /** * 侧边平铺 * @param tags * @param currentTag * @param post * @param currentSearch * @returns {JSX.Element} * @constructor */ const SideAreaLeft = props => { const { post, slot, postCount } = props const { locale } = useGlobal() const showToc = post && post.toc && post.toc.length > 1 return } export default SideAreaLeft