JSFiddle - React, Tailwind, and code Playground
HTML
<script src="http://cdn.kendostatic.com/2011.3.1007/js/kendo.all.min.js"></script>
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.3.1007/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.3.1007/styles/kendo.kendo.min.css">
<table id="jow">
<thead>
<tr>
<th data-field="title">title</th>
<th data-field="jow">jow</th>
<th data-field="ieps">ieps</th>
</tr>
</thead>
<tbody>
<tr>
<td>1977</td>
<td>1977</td>
<td>1977</td>
</tr>
<tr>
<td>1980</td>
<td>1980</td>
<td>1980</td>
</tr>
</tbody>
</table>
JavaScript
$("#jow").kendoGrid({
groupable: true,
sortable: true,
pageable: true
});