import React from 'react' import { NavLink } from 'react-router-dom' import type { NavLinkProps } from 'react-router-dom' import { Anchor_Scroll_Offset } from '../utils' const AnchorLink: React.FC> & { scrollToAnchor: (anchor: string) => void } = (props) => { const hash = (props.to as string).match(/(#.+)$/)?.[1] || '' return (