useTapState(key) returns the current value and a setter, and re-renders every mount that
reads the same key. The same store is on the bridge as tap.state.get, tap.state.set and
tap.state.subscribe when you are outside a component.
What belongs where
The store is scoped to one install in one browser session. It is not shared between
teammates, between browsers or between projects, and it never reaches Tappify or your
server.
Hosted-storage writes also broadcast to every mount, so a preference saved in your settings
panel updates a widget without a reload. That is a different mechanism with the same
symptom:
useTapState for the ephemeral value, useTapStorage for the saved one.