import Link from 'next/link' import { useMediumGlobal } from '@/themes/medium' import JumpToTopButton from './JumpToTopButton' export default function BottomMenuBar ({ post, className }) { const { tocVisible, changeTocVisible } = useMediumGlobal() const showTocButton = post?.toc?.length > 0 const toggleToc = () => { changeTocVisible(!tocVisible) } return (
{showTocButton &&
} { !showTocButton &&
}
) }