import BLOG from '@/blog.config' import React, { useState } from 'react' /** * 社交联系方式按钮组 可折叠的组件 * @returns {JSX.Element} * @constructor */ const SocialButton = () => { const [show, setShow] = useState(false) const toggleShow = () => { setShow(!show) } return
} export default SocialButton