Fix typesr

This commit is contained in:
dominik-zeglen 2019-10-16 17:56:46 +02:00
parent 16263d67a8
commit 4295a6152a

View file

@ -1,4 +1,3 @@
import { Omit } from "@material-ui/core";
import { InputProps } from "@material-ui/core/Input";
import { createStyles, withStyles, WithStyles } from "@material-ui/core/styles";
import TextField from "@material-ui/core/TextField";
@ -39,13 +38,6 @@ export interface SingleAutocompleteSelectFieldProps
onChange: (event: React.ChangeEvent<any>) => void;
}
interface SingleAutocompleteSelectFieldState {
choices: Array<{
label: string;
value: string;
}>;
}
const DebounceAutocomplete: React.ComponentType<
DebounceProps<string>
> = Debounce;