AlexManoilo
Results
1
comments of
AlexManoilo
Had the same issue, I added value={this.state.numericInput} onChange={this.onNumericInputChange} to the NumericInput: \ And set value in the state(implementation of onNumericInputChange): onNumericInputChange(value) { this.setState({ numericInput: value }); } It helped me.