JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="https://yadcf-showcase.appspot.com/resources/css/jquery.dataTables.10.min.css">
<link rel="stylesheet" href="https://yadcf-showcase.appspot.com/resources/css/dataTables.jqueryui.css">
<link rel="stylesheet" href="https://yadcf-showcase.appspot.com/resources/css/jquery-ui.1.9.0.css">
<link rel="stylesheet" href="https://yadcf-showcase.appspot.com/resources/css/select2.css">
<link rel="stylesheet" href="https://yadcf-showcase.appspot.com/resources/css/jquery.dataTables.yadcf.css">
<link rel="stylesheet" href="https://cdn.datatables.net/colreorder/1.3.2/css/colReorder.dataTables.min.css">
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"></script>
<script src="https://yadcf-showcase.appspot.com/resources/js/select2.js"></script>
<script src="https://cdn.datatables.net/v/dt/dt-1.10.12/datatables.min.js"></script>
<script src="https://cdn.datatables.net/colreorder/1.3.2/js/dataTables.colReorder.min.js"></script>
<script src="https://yadcf-showcase.appspot.com/resources/js/jquery.dataTables.yadcf.js"></script>
    <table id="example" cellpadding="0" cellspacing="0" border="0" class="table table-striped">
                    <thead>
                        <tr>
                            <th>Status</th>
                            <th>Project</th>
                        </tr>
                    </thead>
                    <tbody>
						<tr>
                        		<td>ON</td>
                            <td>27/05/1979</td>
                        </tr>
                        <tr>
                            <td>OFF</td>
                            <td>30/01/1984</td>
                        </tr>
                        <tr>
                            <td>off</td>
                            <td></td>
                        </tr>
                        <tr>
                            <td>OFF</td>
                            <td>17/10/1992</td>
    ...

JavaScript

'use strict';

		var oTable = $('#example').DataTable();

		yadcf.init(oTable, [
			{
				column_number: 0,
				filter_type: 'multi_select',
        filter_match_mode: 'exact',
        select_type: 'select2',
        column_data_type: "text",
			},{
				column_number: 1,
				filter_type: 'range_date',
			}]);
      $( ".selector" ).datepicker({ firstDay: 1 });