import BLOG from '@/blog.config' import { useRouter } from 'next/router' import React from 'react' import ShareButtons from './ShareButtons' const ShareBar = ({ post }) => { const router = useRouter() if (!JSON.parse(BLOG.POST_SHARE_BAR_ENABLE) || !post || post?.type !== 'Post') { return <> } const shareUrl = BLOG.LINK + router.asPath return
} export default ShareBar