React | Should onSubmit Go on the <form> or the <button>?
1. Using onSubmit on the
Put onSubmit on the <form>.
Use type="submit" on the button.
Call e.preventDefault() in your handler if needed.
<form onSubmit={handleSubmit}>
<input type="text" />
<button type="submit">Send</button>
</form>
This app...
val-codeops.hashnode.dev1 min read