Sagas are a great power tool, but I personally wouldn't use them for most simple API requests, largely because of the need for "signal actions" to trigger the logic.
You might want to check out our new `redux-starter-kit` package [0], which can simplify some common use cases for things like action creators and reducers. There's also many other existing libraries to handle repetitive code like API requests as well [1].
I think you need to use sagas for either all your logic, or none of it. Having it half/half just means you’re always searching for where something is located.
That said, thanks for the recommendations! I’ll check them out.
That said, thanks for the recommendations! I’ll check them out.