Some forms involve making selections from a list of values. This is kind of like choosing a radio button option from a radio button group. With the Material-UI Select component, you get something that looks more like a traditional HTML select element. Often, web application forms have several selects that depend on one another. In React/Material-UI applications, these selects are controlled through the state component.
Controlling selects with state
How to do it...
Let's say that your screen has two selects—a category select and a product select. Initially, only the category select is populated and enabled. The product select depends on the category select—once a category is selected, the product select...