What's the recommended order of operations when using data loading and state management?
For example, I'm using Redux, and I'm wondering if the loader should populate the initial state of the store with the results of async calls, or if it should simply trigger a bunch of thunks that make these async calls.
0 Replies