Skip to content

Instantly share code, notes, and snippets.

@haldarmahesh
Last active October 30, 2018 19:57
Show Gist options
  • Save haldarmahesh/78c1ebcfc5250a58b0711257e75897a7 to your computer and use it in GitHub Desktop.
Save haldarmahesh/78c1ebcfc5250a58b0711257e75897a7 to your computer and use it in GitHub Desktop.
import useKey from 'use-key-hook';
function MyComponent = (props) => {
useKey((pressedKey) => {
console.log('Detected Key press', pressedKey);
}, {
detectKeys: ['g', 27, 53]
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment