'use client'; import Giscus from '@giscus/react'; import { THEME_CATPUCCIN_MAP } from 'lib/consts'; import useRuaTheme from 'lib/hooks/use-rua-theme'; import { memo } from 'react'; const PostComment = () => { const { theme } = useRuaTheme(); return ( <> ); }; export default memo(PostComment);