// @flow import React from 'react'; import ReactDisqusComments from 'react-disqus-comments'; import { useSiteMetadata } from '../../../hooks'; type Props = { postTitle: string, postSlug: string }; const Comments = ({ postTitle, postSlug }: Props) => { const { url, disqusShortname } = useSiteMetadata(); if (!disqusShortname) { return null; } return ( ); }; export default Comments;