Re-Render When Data Changes
Do you have properties that are separate but related? A good example would be tracking fetch status, result, and error.
- Yes, there are separate but related properties I need to change at the same time.
For example, upon successful fetch, I want to change the
status
todone
andresult
to the response object. - No, I'm just tracking a simple, single, isolated value.