JSFiddle - React, Tailwind, and code Playground
HTML
<form>
<table border="1">
<tr>
<td>
Kod Peralatan
</td>
<td>
Nama Peralatan
</td>
</tr>
<tr>
<td>
<select>
<option>Choose Equipment</option>
</select>
</td>
<td>
</td>
</tr>
</table>
<table>
<tr>
<td align="right">
<button type="button">Add Row</button>
</td>
</tr>
</table>
</center>
</form>
JavaScript
$("button").click(function() {
$("select").append(new Option('Foo', 'foo', true, true));
});