State changes trigger re-renders, and poorly-structured state can cause far more re-rendering than necessary — slowing the app. The key strategies: subscribe narrowly, split state, memoize, and keep state local.
1. Subscribe to the minimum slice you need
store = ();
count = store.;
count = ( s.);
