import InfoCard from './InfoCard' import MenuButtonGroup from './MenuButtonGroup' 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_NEXT from '../config_next' /** * 侧边平铺 * @param tags * @param currentTag * @param post * @param currentSearch * @returns {JSX.Element} * @constructor */ const SideAreaLeft = ({ currentTag, post, postCount, currentSearch }) => { const { locale } = useGlobal() const showToc = post && post.toc && post.toc.length > 1 return } export default SideAreaLeft