import React, { useState } from 'react' import styles from './index.module.scss' import classNames from 'classnames' import { isPc } from '@/utils/http' /** * @param activeTab 0:一碑两面 1:一碑万象 2:无尽未竟 */ function MenuSider({ activeTab }: { activeTab: number }) { const [isShowMenu, setIsShowMenu] = useState(false) return ( <>