This commit is contained in:
Stefan Pejcic
2024-05-08 19:58:53 +02:00
parent 440d98beff
commit 8595a9f4e5
2479 changed files with 591504 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import React from "react";
import { useLocation } from "react-router-dom";
import { setLastLocation } from "src/utils/last-location";
export const LocationChangeHandler = () => {
const { pathname } = useLocation();
React.useEffect(() => {
if (
typeof window !== "undefined" &&
typeof localStorage !== "undefined"
) {
setLastLocation(pathname);
}
}, [pathname]);
return null;
};