Hlopshak поздравляю
попробуй брать код в тройные обратные кавычки (обязательно в пустой строке перед кодом и в пустой строке после кода)
тогда было бы так:
export const handleKeyPress = (term, state) => {
return (name, matches, data) => {
if (String.fromCharCode(data.code) === "g" || String.fromCharCode(data.code) === "G") {
state.gold = state.gold + 1
updateGold(term, state)
}
}
}
А если красивые отступы добавить, то вообще красота 🙂
export const handleKeyPress = (term, state) => {
return (name, matches, data) => {
if (String.fromCharCode(data.code) === "g" || String.fromCharCode(data.code) === "G") {
state.gold = state.gold + 1
updateGold(term, state)
}
}
}