In React, forms are often built with this pattern: * Type/change events fire on the field (e.g. username) * Username updates the internal model (this.username = 'karthikksv') * The submit button fires an event so the parent page can act on the entire data model ({ username: 'karthikksv', password: 'fluffykittens' }) I'm concerned that this model won't work well using server-side React components on a network with hig…
If you don't need to send each letter, it's recommended to not do so; the submit event object includes all form data, so you can do one final validation at the end, similar to what you'd do with a normal web server.