Commit f5671911bbbc3cb9aee3bb5ae024c49d19effab4

Authored by Graham Fairweather
1 parent 899ad697

Keyboard event key contants

Showing 1 changed file with 9 additions and 0 deletions   Show diff stats
src/utils/kbEventKeys.js 0 → 100644
  1 +export const ALT = 'Alt';
  2 +export const ARROWLEFT = 'ArrowLeft';
  3 +export const ARROWRIGHT = 'ArrowRight';
  4 +export const CAPSLOCK = 'CapsLock';
  5 +export const CONTROL = 'Control';
  6 +export const ENTER = 'Enter';
  7 +export const META = 'Meta';
  8 +export const SHIFT = 'Shift';
  9 +export const TAB = 'Tab';