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