I'm new to react, my objective is to show border in red color when we click on send button without entering any value in input text field. I don't know how to get border red in material-ui. Do i need to validate the input field? If yes then do i need to validate with letters and alphanumeric regex? I'm bit confused in here.
Here is the code:
<TextField
margin="dense"
fullWidth
variant="outlined"
placeholder="Enter a Message"
name="msg"
id="text"
/>
<Button onClick={this.handleSubmit}>Send</Button>
Can anyone assist me in this query?