Credits for the data go to https://gist.github.com/Fluidbyte/2973986 . I've simply transformed the data into an array.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { ChangeEvent } from 'react'; | |
import { Field, FieldRenderProps, FieldProps } from 'react-final-form'; | |
import TextField, { TextFieldProps as MuiTextFieldProps } from '@material-ui/core/TextField'; | |
import { | |
default as MuiAutocomplete, | |
AutocompleteProps as MuiAutocompleteProps | |
} from '@material-ui/lab/Autocomplete'; |