import { useGlobal } from '@/lib/global' import { useGitBookGlobal } from '..' /** * 行動版底部導覽 * @param {*} param0 * @returns */ export default function BottomMenuBar({ post, className }) { const showTocButton = post?.toc?.length > 1 const { locale } = useGlobal() const { pageNavVisible, changePageNavVisible, tocVisible, changeTocVisible } = useGitBookGlobal() const togglePageNavVisible = () => { changePageNavVisible(!pageNavVisible) } const toggleToc = () => { changeTocVisible(!tocVisible) } return (