import React from 'react' import CONFIG_HEXO from '../config_hexo' /** * 跳转到评论区 * @returns {JSX.Element} * @constructor */ const JumpToCommentButton = () => { if (!CONFIG_HEXO.WIDGET_TO_COMMENT) { return <>> } function navToComment () { const commentElement = document.getElementById('comment') if (commentElement) { commentElement?.scrollIntoView({ behavior: 'smooth', block: 'start', inline: 'nearest' }) } } return (