Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { useState, useEffect } from '@wordpress/element';
export function useHash() {
const [ hash, setHash ] = useState( window.location.hash );
useEffect( () => {
const handleHashChange = () => {
setHash( window.location.hash );
};
window.addEventListener( 'hashchange', handleHashChange );
return () => {
window.removeEventListener( 'hashchange', handleHashChange );
};
}, [] );
return hash;
}