aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--components/keybindselector.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/components/keybindselector.tsx b/components/keybindselector.tsx
index b7deed8..26eb222 100644
--- a/components/keybindselector.tsx
+++ b/components/keybindselector.tsx
@@ -1,7 +1,7 @@
import FilledInput from '@material-ui/core/FilledInput';
import FormControl from '@material-ui/core/FormControl';
import InputLabel from '@material-ui/core/InputLabel';
-import { useEffect, useRef, useState } from 'react';
+import { useState } from 'react';
import { v4 as uuid } from 'uuid';
function Keybind(props: {
@@ -19,6 +19,10 @@ var keyBlacklist = [
];
var keyMap = {
' ': 'Space',
+ 'ArrowDown': 'Down',
+ 'ArrowLeft': 'Left',
+ 'ArrowRight': 'Right',
+ 'ArrowUp': 'Up',
};
export default function KeybindSelector(props: {