JSFiddle - React, Tailwind, and code Playground
by joshmoto
HTML
<table class="form-table" role="presentation">
<tbody>
<tr>
<th scope="row"><label for="blogname">Site Title</label></th>
<td><input name="blogname" type="text" id="blogname" value="Werks Motorsport" class="regular-text"></td>
</tr>
<tr>
<th scope="row">Membership</th>
<td>
<fieldset>
<legend class="screen-reader-text"><span>Membership</span></legend><label for="users_can_register">
<input name="users_can_register" type="checkbox" id="users_can_register" value="1">
Anyone can register</label>
</fieldset>
</td>
</tr>
<tr>
<th scope="row"><label for="default_role">New User Default Role</label></th>
<td>
<select name="default_role" id="default_role">
<option value="shop_manager">Shop manager</option>
<option value="customer">Customer</option>
<option selected="selected" value="subscriber">Subscriber</option>
<option value="contributor">Contributor</option>
<option value="author">Author</option>
<option value="editor">Editor</option>
<option value="administrator">Administrator</option>
</select>
</td>
</tr>
</tbody>
</table>