Hacker News new | ask | show | jobs
by revskill 1062 days ago
How can you "fetch something when your state change ?". It's the main use case for useEffect.
1 comments

You can just trigger fetch in the function that does the state change.
Agreed, this is the correct approach. Overusing effects makes control flow difficult to understand and has many unintended consequences. The misuse of effects is so widespread the React team had to address it with Strict mode in React 18.