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