javascript material-ui Пример поля date
Primary tabs
import TextField from '@material-ui/core/TextField';
<TextField
type="date"
required
id="start_date"
name="start_date"
value={props.start_date}
onChange={props.handleChangeText}
label="Время начала"
fullWidth
autoComplete="fname"
InputLabelProps={{
shrink: true,
}}
helperText="Подсказка"
/>
- Log in to post comments
- 1762 reads