react-code-dataset / react-use /docs /useSessionStorage.md
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified

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);
  • keysessionStorage key to manage.
  • initialValue — initial value to set, if value in sessionStorage is empty.
  • raw — boolean, if set to true, hook will not attempt to JSON serialize stored values.