Redux-form の handleSubmit について

https://github.com/redux-form/redux-form/blob/af9008cea4c2917475bfd3445613ca7392b5b943/docs/api/Props.md#handlesubmiteventorsubmit–function

使い方は二通り

onSubmitに使うか

<form onSubmit={handleSubmit}>

onClickに使うか

<button onClick={handleSubmit}>


handleSubmit はバリデーションを実行する。
バリデーションが成功した場合は、form内のデータを使ってthis.props.onSubmit(data)を実行する。