Introduction
Last updated
Last updated
react-keyboard is wrap of mousetrap.js in React, it offers keyboard shortcuts handling in React application.
A KeyMap is an object which value is the key sequence. The key sequence can be:
string
which can be a single key left
or combination of keys command+k
array
which is an array of multiple key commands: ['del', 'backspace']
object
only use an object if you need to listen to specific event type: {combo: 'command+k', eventType: 'keyup'}
Note: Child HotKeys components can inherit keyMap
from their parents. You don't necessarily define keyMap
for each child if parents already have the shortcuts you need.