"use client" import Giscus from "@giscus/react" import { useTheme } from "@/theme/theme.client" import type { CookiesStore } from "@/utils/constants" interface BlogPostCommentsProps { cookiesStore: CookiesStore } export const BlogPostComments = (props: BlogPostCommentsProps): JSX.Element => { const { cookiesStore } = props const theme = useTheme(cookiesStore) return ( ) }