import React from 'react' import CONFIG_MATERY from '../config_matery' /** * 跳转到评论区 * @returns {JSX.Element} * @constructor */ const JumpToCommentButton = () => { if (!CONFIG_MATERY.WIDGET_TO_COMMENT) { return <>> } function navToComment() { if (document.getElementById('comment')) { window.scrollTo({ top: document.getElementById('comment').offsetTop, behavior: 'smooth' }) } } return (