Material-UI doesn't actually come with an Autocomplete component. The reason is that, since there are so many different implementations of autocomplete selection components in the React ecosystem already, it doesn't make sense to provide another one. Instead, you can pick an existing implementation and augment it with Material-UI components so that it can integrate nicely with your Material-UI application.
Building an Autocomplete component
How to do it...
Let's say that you have a selector for a hockey team. But there are too many teams to reasonably fit in a simple select component—you need autocomplete capabilities. You can use the Select component from the react-select package to provide the autocomplete...