import { handleKeyPress } from "../util/index"
class Input extends Component {
constructor(props) {
super(props)
this.state = {
isOpen: false
}
}
render() {
return <input onKeyPress={(e) => handleKeyPress(e)} />
}
}
remove this from calling function and remove bind function line