react hide input border code example
Example 1: css remove border input focus
textarea:focus, input:focus{
outline: none;
}
Example 2: Removing borderline of input in react
<TextField style={{border: 'none'}} ....
textarea:focus, input:focus{
outline: none;
}
<TextField style={{border: 'none'}} ....