library for tracking keyboard button presses in React
npm install react-keyboard-manager

Wrap the application in KeyboardProvider
Exapmle:
``
function App() {
return (
);
}
`
| prop | meaning |
| -------- | --------------------------------------------- |
| key | keyboard key value |
| callback | function that is called when a key is pressed |
| disabled | disable a callback call |
Exapmle:
```
useKeyboard({
key: "Escape",
callback: onCloseModal,
});