What I\'m trying to do:
I am trying to pass a string from a child component to the handleChange function of a parent component.
What cur
In your handle event use double arrow function, there's no need to bind when using arrow function:
handleChange = tags => (event) => { console.log(tags); console.log(event.target.value); }
And in the Child:
Tag 1: Tag 2: Tag 3: