reactjs - Why is localStorage getting cleared whenever I refresh the page? - Stack Overflow

PHOTO EMBED

Tue Dec 20 2022 18:09:01 GMT+0000 (Coordinated Universal Time)

Saved by @akshat202002 #javascript #react.js

const LOCAL_STORAGE_KEY = "task-list"

function TodoList() {
  const [todoList, setTodoList] = useState(() => {
    return JSON.parse(localStorage.getItem(LOCAL_STORAGE_KEY)) || []
  });
    
  useEffect(() => {
    localStorage.setItem(LOCAL_STORAGE_KEY, JSON.stringify(todoList));
  }, [todoList]);

  ...
content_copyCOPY

Learn react today web dev simplified lec 16

https://stackoverflow.com/questions/72222728/why-is-localstorage-getting-cleared-whenever-i-refresh-the-page