© 2026 Hedgehog Software, LLC
type StoreValue = Record<string, number>; const [store, setStore] = createStore<StoreValue>({ a: 0, b: 0, });
<button type="button" onClick={() => setStore("a", undefined)}> setStore("a", undefined) </button>
<div> ⚠️ store - not updating because store is not reactive - only its values:{" "} {JSON.stringify(unwrap(store))} </div>