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