Y
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
scotty79
1062 days ago
You can just trigger fetch in the function that does the state change.
link
shortcake27
1061 days ago
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.
link