I would like to ask if this is a suitable way to redirect to another page after resultx-form submit success:
const form = reduxForm({ form: 'HeroesCreateComponentForm', validate, onSubmitSuccess: () => { console.log('onSubmitSuccess called (yes, yes I do get called'); browserHistory.push('/') }, });
source share