JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.2.804/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2011.2.804/styles/kendo.kendo.min.css">
<script src="http://cdn.kendostatic.com/2011.2.804/js/kendo.all.min.js"></script>
<table id="grid">
<thead>
<tr>
<th>
</th>
<th>
Details
</th>
<th>
Comments
</th>
</thead>
<tbody>
<td colspan="3"></td>
</tbody>
</table>
JavaScript
$(function() {
$("#grid").kendoGrid({
height: 500,
scrollable: true,
selectable: true
});
});