

Hooks for persistent browser state and lightweight document/clipboard utilities.

## Hooks [#hooks]

<Cards columns="3">
  <Card title="useLocalStorage" href="/hooks/storage/use-local-storage">
    Persist component state to 

    `localStorage`

     with serialization control.
  </Card>

  <Card title="useReadLocalStorage" href="/hooks/storage/use-read-local-storage">
    Read a 

    `localStorage`

     value reactively without creating a setter.
  </Card>

  <Card title="useSessionStorage" href="/hooks/storage/use-session-storage">
    Persist state for the current tab via 

    `sessionStorage`

    .
  </Card>

  <Card title="useCopyToClipboard" href="/hooks/storage/use-copy-to-clipboard">
    Copy text to clipboard and track the copied value.
  </Card>

  <Card title="useDocumentTitle" href="/hooks/storage/use-document-title">
    Set 

    `document.title`

     with optional restore-on-unmount behavior.
  </Card>
</Cards>
