import InfoCard from '@/themes/NEXT/components/InfoCard' import MenuButtonGroup from '@/themes/NEXT/components/MenuButtonGroup' import SearchInput from '@/themes/NEXT/components/SearchInput' import Toc from '@/themes/NEXT/components/Toc' import { useGlobal } from '@/lib/global' import React from 'react' import Tabs from '@/themes/NEXT/components/Tabs' import Logo from './Logo' import Card from './Card' import CONFIG_NEXT from '@/themes/NEXT/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