useSessionStorage
Sync state to session 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 useSessionStorage
hook allows you to store and retrieve a value in session 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 session storage. It also takes an optional defaultValue
parameter, which is used as the initial value if no value is stored in session 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 session storage using the useEffect
hook.
Here's an example of how to use the useSessionStorage
hook in a component:
In this example, we use the useSessionStorage
hook to store a count
value in session 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