useLocalStorage
Sync state to local storage so that it persists through a page refresh. Usage is similar to useState except we pass in a local storage key so that we can default to that value on page load instead of the specified initial value.
Usage
This useLocalStorage
hook allows you to store and retrieve a value in local storage using the useState
and useEffect
hooks from React. It takes a key
string as a parameter, which is used as the key for storing the value in local storage. It also takes an optional defaultValue
parameter, which is used as the initial value if no value is stored in local storage.
The hook returns a tuple containing the current value and a function to set the value. When the value is updated, the hook automatically stores the new value in local storage using the useEffect
hook.
Here's an example of how to use the useLocalStorage
hook in a component:
In this example, we use the useLocalStorage
hook to store a count
value in local storage. We pass an object with the key
and defaultValue
options to the hook, and we destructure the returned tuple into count
and setCount
. We use count
to display the current value, and setCount
to update the value when the button is clicked.
Last updated