Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | 108x 3875x 576x 576x 576x 576x 1x 1x 3875x 741x 741x 741x 3875x | import { useEffect, useState } from "react";
export const useLocalStorage = <T>(key: string, initialValue: T) => {
const [storedValue, setStoredValue] = useState<T>(() => {
Iif (typeof window === "undefined") return initialValue;
try {
const item = window.localStorage.getItem(key);
return item ? JSON.parse(item) : initialValue;
} catch (e) {
console.log("Error while getting local storage:", e);
return initialValue;
}
});
useEffect(() => {
Eif (typeof window !== "undefined") {
try {
window.localStorage.setItem(key, JSON.stringify(storedValue));
} catch (e) {
console.log("Error setting local storage:", e);
}
}
}, [key, storedValue]);
return [storedValue, setStoredValue] as const;
};
|