import BLOG from '@/blog.config' import { Giscus } from '@giscus/react' /** * Giscus评论 @see https://giscus.app/zh-CN * Contribute by @txs https://github.com/txs/NotionNext/commit/1bf7179d0af21fb433e4c7773504f244998678cb * @returns {JSX.Element} * @constructor */ const GiscusComponent = ({ isDarkMode }) => { const theme = isDarkMode ? 'dark' : 'light' return ( ) } export default GiscusComponent