Use localStorage
Follow step-by-step instructions to use localStorage in the project.
We'll cover the following...
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
functionargument is called by using a hook. - The
dependencyargument preventsuseEffectfrom rendering each time. It only allows it to render when there’s adependencychange. In our case, thedependencyistoDoList.
The syntax ...