I develop a website with React/Redux and I use a thunk middleware to call my API. My problem concerns redirections after actions.
I really do not know how and where
Usually the better practice is to redirect in the component like this:
render(){ if(requestFullfilled){ router.push('/item') } else{ return( ) } }