JSFiddle - React, Tailwind, and code Playground

by Sanal S

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-confirmation/1.0.5/bootstrap-confirmation.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"></script>

<body>
  <div class="row">
    <div class="col-lg-12">
      <div class="box box-primary">
        <div class="box-header">
          <h4>
                                    <b>Patient Details</b>
                                    <div class="box-tools pull-right">
                                        <button type="button" class="btn btn-box-tool btn-sm" name="btnFind" id="btnFind" data-toggle="tooltip" title="" data-original-title="Search"><i class="fa fa-search"></i></button>
                                        <button class="btn btn-box-tool btn-sm" data-widget="collapse" data-toggle="tooltip" title="" data-original-title="Collapse"><i class="fa fa-minus"></i></button>
                                    </div>       
                                </h4>
        </div>
        <div class="box box-body">
          <div id="showGrid" class="table-responsive" style="max-height: 205px;">
            <div class="row">
              <div class="col-xs-6">
                <div id="table_length" class="dataTables_length">
                  records per page
                </div>
              </div>
              <div class="col-xs-6">
                <div class="dataTables_filter" id="table_filter">
                  <label>Search:
                    <input type="text" aria-controls="table">
                  </label>
                </div>
              </div>
            </div>
            <table class="table table-striped table-bordered table-hover table-condensed tablecollapse in" style="margin-bottom: 0px;" id="table">
              <thead>
                <tr>
                  <th> PO NO </th>
                  <th> Man Name </th>
                  <th> Sup Name </th>
                  <th> Date </th>
                  <th> Type </th>
    ...