Redux-Form decorates your component with handleSubmit prop. According to docs it's: a function meant to be passed to <form onSubmit= {handleSubmit}> or to <button onClick= {handleSubmit}>. It will run validation, both sync and async, and, if the form is valid, it will call this.pro...