Storage Hooks
Hooks for local/session storage and browser utility APIs.
Hooks for persistent browser state and lightweight document/clipboard utilities.
Hooks
useLocalStorage
Persist component state to
localStorage with serialization control.useReadLocalStorage
Read a
localStorage value reactively without creating a setter.useSessionStorage
Persist state for the current tab via
sessionStorage.useCopyToClipboard
Copy text to clipboard and track the copied value.
useDocumentTitle
Set
document.title with optional restore-on-unmount behavior.