@johnfanidis/usekeypress
v1.0.7
Published
The best keypress hook designed for React
Downloads
2
Maintainers
Readme
@johnfanidis/usekeypress
React keypress hook.
Install
$ npm install @johnfanidis/usekeypress
Usage
import useKeyPress from "@johnfanidis/usekeypress";
const MyComponent = () => {
// Sets up the hook listening for the 'S' key
const pressed_V_Key = useKeyPress(83, true);
useEffect(() => {
if (pressed_S_Key) {
// do something when 'S' key is pressed
}
}, [pressed_S_Key]);
return null;
}