const ScrollHash = () => {
const url = window.location;
if (url.hash) {
const hash = url.hash.replace('#', '');
const block = document.getElementById(hash);
if (block) {
block.scrollIntoView({block: 'start', behavior: "smooth"});
}
}
};
export default ScrollHash;