import { useGitBookGlobal } from '@/themes/gitbook' export default function FloatTocButton () { const { tocVisible, changeTocVisible } = useGitBookGlobal() const toggleToc = () => { changeTocVisible(!tocVisible) } return (
) }