

Hooks for common local state patterns and step/count workflows.

## Hooks [#hooks]

<Cards columns="3">
  <Card title="useBoolean" href="/hooks/state/use-boolean">
    Boolean state with 

    `setTrue`

    , 

    `setFalse`

    , and 

    `toggle`

     helpers.
  </Card>

  <Card title="useCounter" href="/hooks/state/use-counter">
    Numeric counter with increment, decrement, reset, and direct set.
  </Card>

  <Card title="useMap" href="/hooks/state/use-map">
    Manage 

    `Map`

     state with set/remove/reset actions.
  </Card>

  <Card title="useStep" href="/hooks/state/use-step">
    Constrained step navigation for multi-step flows.
  </Card>

  <Card title="useToggle" href="/hooks/state/use-toggle">
    Minimal boolean toggle with direct setter access.
  </Card>

  <Card title="useCountdown" href="/hooks/state/use-countdown">
    Start, stop, and reset a configurable countdown.
  </Card>
</Cards>
