The way I'm doing it right now, is by having my api logic in one file, and my reducer in the slice file. The slice File contains fetched user data, and the api is just doing an axios call to let the user to sign in.
Now I connect them in the form handle submit. First the API call, and then the dispatch of the store function which is basically a setter.
Asking this question because this is obviously not the clean or the right way to do this.
Can't really find an answer to my question, so I gotta ask here what would be the proper implementation of this with the handle submit form only having a dispatch of one reducer/function from the store which combines the api call and the store setters?