REACT-SHORTCUT-KEY
Examples
Press "CTRL + Enter" to say hello.
const componentOnHello = e => alert('Hello! You pressed CTRL + Enter!')
const keymap = {
'ctrl+enter': componentOnHello
}
Press "META + Esc" to alert bye.
const componentOnBye = e => alert('Bye! You pressed CTRL + Esc.')
const keymap = {
'meta+esc': componentOnBye
}