The e.target.value of one input of react will be assigned to another input,. Can you clear this default value?

clipboard.png

clipboard.png

Mar.01,2021

if you use < input defaultValue= {Value} / >, react will not manage the value of input. You can modify it by finding input, and using input.value = newValue to modify
if you use < input value= {this.state.value} onChange= {this.handleChange} / >, it is react that manages input value, needs to go to this.setState ({value: e.target.value})

through handleChange method.
Menu