I\'m trying to handle changes in my form. I have title, description, and category.
The first input(title) -> Unable to type in the field.
The second input(d
change your function to
handleChange(e) { this.setState({ [e.target.name] : e.target.value }); }