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
const handleChange = (tags) => (event) => { // console.log(tags); // console.log(event.target.value); }; <input type="text" name="name" placeholder="Name" value={input.Iname} onChange={handleChange("Iname")} />