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
{!show && } {show && <> {BLOG.CONTACT_GITHUB && } {BLOG.CONTACT_TWITTER && } {BLOG.CONTACT_TELEGRAM && } {BLOG.CONTACT_LINKEDIN && } {BLOG.CONTACT_WEIBO && } {BLOG.CONTACT_INSTAGRAM && } {BLOG.CONTACT_EMAIL && } {BLOG.ENABLE_RSS && } }
} export default SocialButton