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