import { useGitBookGlobal } from '@/themes/gitbook' import NavPostList from './NavPostList' /** * 悬浮抽屉 页面内导航 * @param toc * @param post * @returns {JSX.Element} * @constructor */ const PageNavDrawer = (props) => { const { pageNavVisible, changePageNavVisible } = useGitBookGlobal() const { filteredNavPages } = props const switchVisible = () => { changePageNavVisible(!pageNavVisible) } return <>