JSFiddle - React, Tailwind, and code Playground
by Ben Jones
HTML
<table style="">
<tbody>
<tr>
<td style="">Accrual Name<span style="">*</span></td>
<td style="">Accrue To<span style="">*</span></td>
</tr>
<tr>
<td style="">
<input
style=""
id="accrualName"
onChange=""
name=""
placeholder=""
type=""
value=""
/>
<label id="accrualNameErrorMessage" style="">* Accrual Name must be 1 - 50 characters and no special characters</label>
</td>
<td style="">
<select
id=""
name=""
defaultValue=""
onChange="">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</select>
</td>
</tr>
</tbody>
</table>