Use localStorage

Follow step-by-step instructions to use localStorage in the project.

We'll cover the following...

Set the items

We must save the item each time the status of our toDoList changes (by adding new items or deleting old ones). We have useEffect in React to help us out. It takes two arguments:

  • The function argument is called by using a hook.
  • The dependency argument prevents useEffect from rendering each time. It only allows it to render when there’s a dependency
...