Y
Hacker News
new
|
ask
|
show
|
jobs
by
noir_lord
2908 days ago
I just put those Api calls in a module in the same dir as the component usually.
Then api.fetchFoo(bar).then() mostly does it.
Benefit is separation of API from component.
1 comments
RussianCow
2908 days ago
This doesn't actually solve the dilemma of where to put the logic—all you've done is moved the API code into its own object, but your component is still the one controlling the higher-level flow in this case.
link