@timeyurah/handle-key-press
v1.0.2
Published
Checa se uma determinada tecla foi utilizada. Se foi, executa uma função
Downloads
1
Readme
@timeyurah/handle-key-press
Objetivo
Checar qual tecla foi digitada pelo usuário. Caso a tecla seja a escolhida, executar uma função.
Instalação
npm install @timeyurah/handle-key-press
Uso
Em um ambiente React:
import React, { Component } from 'react;
import handleKeyPress from '@timeyurah/handle-key-press';
class Test extends Component {
testFunction = () => {
console.log('It worked!')
}
render = () =>
<form>
<input type='text' onKeyPress={ e => handleKeyPress(e, 'Enter', this.testFunction) } />
</form>
}
export default Test;