summaryrefslogtreecommitdiff
path: root/frontend/src/shortcuts
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/shortcuts')
-rw-r--r--frontend/src/shortcuts/keymap.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/frontend/src/shortcuts/keymap.js b/frontend/src/shortcuts/keymap.js
index 7bc24e83..797340d7 100644
--- a/frontend/src/shortcuts/keymap.js
+++ b/frontend/src/shortcuts/keymap.js
@@ -1,10 +1,10 @@
const KeymapConfiguration = {
- MAP: {
- MOVE_LEFT: ["a", "left"],
- MOVE_RIGHT: ["d", "right"],
- MOVE_UP: ["w", "up"],
- MOVE_DOWN: ["s", "down"]
- }
-};
+ MAP: {
+ MOVE_LEFT: ['a', 'left'],
+ MOVE_RIGHT: ['d', 'right'],
+ MOVE_UP: ['w', 'up'],
+ MOVE_DOWN: ['s', 'down'],
+ },
+}
-export default KeymapConfiguration;
+export default KeymapConfiguration