import React from "react"; function Input() { function handleInputKeyUp(event) { console.log(event.target.value); } return <input onKeyUp={handleInputKeyUp} />; }