import React from 'react';
import { graphql, StaticQuery } from 'gatsby';
import ReactDisqusComments from 'react-disqus-comments';
export const PureComments = ({ data, postTitle, postSlug }) => {
const {
url,
disqusShortname
} = data.site.siteMetadata;
if (!disqusShortname) {
return null;
}
return (
);
};
export const Comments = (props) => (
}
/>
);
export default Comments;