import React from "react"; const InternalLink = ({ hash, title }) => { const handleLink = (event) => { //manually change hash to trigger hashChange event. window.location.hash = "#"; window.location.hash = hash; }; return ( {title} ); }; export default InternalLink;