localStorage empty after refresh – Reactjs
I need to use localStorage in nextjs but after refresh i lose all the data (empty array [] in the console). this is what i tried: const [todos, setTodos] = useState([]); useEffect(() => { const storedTodos = JSON.parse(localStorage.getItem('todos')) || [];…