JSFiddle - React, Tailwind, and code Playground

by techrevolt

HTML

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.0/css/bootstrap.min.css">
<form action="tasks_document.html" name="claimform" method="post">

  <div class="form-group">
    <label class="font-weight-bold"> Formal claim received? </label><br />
    <div class="form-check  form-check-inline">
      <input class="form-check-input" type="radio" name="formalclaimreceived" value="yes">
      <label class="form-check-label"> Yes</label>
    </div>
    <div class="form-check  form-check-inline">
      <input class="form-check-input" type="radio" name="formalclaimreceived" value="no">
      <label class="form-check-label"> No</label>
    </div>
  </div>
</form>