“Автозаполнение высоты регулировки в Materil UI” Ответ

Автозаполнение высоты регулировки в Materil UI

renderInput={(params) => <TextField {...params} variant="standard" size="small" />}
Mystic Dev

Автозаполнение высоты регулировки в Materil UI

const useStyles = makeStyles(theme => ({
  inputRoot: {
    color: theme.palette.primary.contrastText,
  },
  popupIndicator: {
    color: theme.palette.primary.contrastText,
  },
  root: {
    padding: `0 ${theme.spacing(1)}px`,
  },
}))

const AutocompleteWrapper = ({
  value,
  onChange,
  options,
}) => {
  const classes = useStyles()

  return (
  <Autocomplete
    classes={classes}
    options={options}
    value={value}
    onChange={onChange}
    renderInput={(params) => <TextField {...params} variant="standard" size="small" />}
  />
  )
}
Mystic Dev

Ответы похожие на “Автозаполнение высоты регулировки в Materil UI”

Вопросы похожие на “Автозаполнение высоты регулировки в Materil UI”

Больше похожих ответов на “Автозаполнение высоты регулировки в Materil UI” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования