mirror of
https://github.com/streamich/react-use.git
synced 2025-12-08 18:02:14 +00:00
799 B
799 B
useSessionStorage
React side-effect hook that manages a single sessionStorage key.
Usage
import {useSessionStorage} from 'react-use';
const Demo = () => {
const [value, setValue] = useSessionStorage('my-key', 'foo');
return (
<div>
<div>Value: {value}</div>
<button onClick={() => setValue('bar')}>bar</button>
<button onClick={() => setValue('baz')}>baz</button>
</div>
);
};
Reference
useSessionStorage(key);
useSessionStorage(key, initialValue);
useSessionStorage(key, initialValue, raw);
key—sessionStoragekey to manage.initialValue— initial value to set, if value insessionStorageis empty.raw— boolean, if set totrue, hook will not attempt to JSON serialize stored values.