React FormControl onChange not being triggered
I am trying to get a simple form working in React but I can’t seem to get it working. I am also using react-bootstrap for my GUI components. I have a component called Inventory that holds the form: class Inventory extends React.Component { constructor(props) { super(props); this.handleChange = this.handleChange.bind(this); this.handleSubmit = this.handleSubmit.bind(this); this.state = {… Read More React FormControl onChange not being triggered