我正在使用来自“react-material-ui-form-validator”的 TextValidator 和来自“@material-ui/core/Grid”的 Grid,并且我有多个字段要压缩在一行中。
我知道我可以缩短标签描述来解决我的问题,但我不能。
<Grid item xs={12} sm={1}>
<TextValidator
required
id="AbcdefKey"
name="AbcdefKey"
validators={['required', 'isPositive']}
errorMessages={['this field is required','Must be numeric and greater than zero']}
fullWidth
value="1111"
label="AbcdefKey"
/>
</Grid>