Here's my code. I'm making a screen on a mobile app and I keep getting the error above and if I take out the all together, the app crashes.
return (
<form className={classes.root} noValidate autoComplete='off'>
<div>
<Text style={styles.textStyle}>Tell us about your skin! {'\n\n'}</Text>
<Text style={styles.textStyle}>Skin Type: {'\n'}</Text>
<TextField
id='outlined-select-currency'
select
label='Select'
value={skinType}
onChange={handleChange}
helperText='Please select your skin type'
variant='outlined'
>
{skinTypes.map((option) => (
<MenuItem key={option.value} value={option.value}>
{option.label}
</MenuItem>
))}
</TextField>
</div>
</form>