import react from "react"
const App = () => {
const onEnterInput = (e) => {
if(e.key === 'Enter') {
handleSubmit();
}
}
const handleSubmit = () => {
console.log("submit")
}
return (
<div className="todo_input_wrap">
<h2>TODO LIST</h2>
<div className="todo_input">
<input type="text" onKeyPress={onEnterInput} />
<button>버튼</button>
</div>
</div>
)
}
export default App
onKeyPress 를 이용
e.key === 'Enter' 도 이용