A component that controls the input elements within the forms on subsequent user input is called Controlled Component.
Like every state mutation will have an associated handler function.
For example, If we write all the names in uppercase letters, we use handleChange.
handleChange(event) {
this.setState({value: event.target.value.toUpperCase()})
}