openpanel/packages/devtools-ui/src/utils/last-location.ts
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

9 lines
290 B
TypeScript

export const getLastLocation = (): string => {
const lastLocation = localStorage.getItem("devtools:last-location");
return lastLocation || "/overview";
};
export const setLastLocation = (location: string): void => {
localStorage.setItem("devtools:last-location", location);
};