import { useLocation } from 'react-router-dom' function usePageViews() { let location = useLocation() useEffect( () => { // run code }, [location] ) }