kufu / hello-world

SmartHRのエンジニア採用サイトのソースコード置き場

Home Page:https://hello-world.smarthr.co.jp/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

KeyboardEvent.keyCode is deprecated

is2ei opened this issue · comments

KeyboardEvent.keyCode is deprecated and no longer recommended to use. 😅

if (e.keyCode === 38) {
e.preventDefault()
if (currentIndex === 0) {
setIndex(commandNames.length - 1)
} else {
setIndex(currentIndex - 1)
}
}
// down
if (e.keyCode === 40) {

Ref: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/keyCode