import FilledInput from '@material-ui/core/FilledInput'; import FormControl from '@material-ui/core/FormControl'; import InputLabel from '@material-ui/core/InputLabel'; import { useState } from 'react'; import { v4 as uuid } from 'uuid'; function Keybind(props: { keyName: string; }) { return {props.keyName}; } function KeybindSelectorInner(props: { value: string[]; }) { return
{props.value.map(s => )}
; } export default function KeybindSelector(props: { label: string; value: string[]; onChange?: (newValue: string[]) => any; }) { var [tempID, _setTempID] = useState(uuid()); return {props.label} } /> ; }