import BLOG from '@/blog.config' import { useGlobal } from '@/lib/global' import { faListOl } from '@fortawesome/free-solid-svg-icons' import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' import React from 'react' /** * 点击召唤目录抽屉 * 当屏幕下滑500像素后会出现该控件 * @param props 父组件传入props * @returns {JSX.Element} * @constructor */ const TocDrawerButton = (props) => { if (!BLOG.widget?.showToc) { return <> } const { locale } = useGlobal() return (
) } export default TocDrawerButton