JSFiddle - React, Tailwind, and code Playground
HTML
<a href='#test'> <button>click</button></a>
JavaScript
window.addEventListener('hashchange', function() {
console.log(window.location.hash);
if('' === window.location.hash) {
console.log('reload');
//window.location.reload();
}
});