Here’s three important parts of React’s philosophy for state management. First, React’s default behavior is to start fresh when state updates. In other words, if your application updates a stateful value, you can reasonably expect everything subscribed or derived from the stateful value to update accordingly. React’s decision to keep…