Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Follow these steps for completing your project.
- [ ] Submit a Pull-Request to merge <firstName-lastName> Branch into main (student's Repository). **Please don't merge your own pull request**
- [ ] From the home page of your repo, make sure you have your branch selected
- [ ] Copy the URL and paste it into Canvas

## Minimum Viable Product

- [ ] Build a custom hook that let's you save data to localStorage
Expand Down Expand Up @@ -84,7 +84,7 @@ export const useLocalStorage = (key, initialValue) => {
- `setValue` should look something like this:

```js
const setValue = value => {
const setValue = (value) => {
// Save state
setStoredValue(value);
// Save to local storage
Expand Down
Loading