I'm using Wix React Native Navigation and Redux Thunk. What's the correct way for navigating after an async action. I'm trying to do something like:
// actionCreators.js
export const createUser = (data) => {
return (dispatch) => {
axios.post('api/users', data)
.then(() => {
// Navigate to other screen.
}
}
}