JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.common.min.css">
<link rel="stylesheet" href="http://cdn.kendostatic.com/2012.1.322/styles/kendo.default.min.css">
<script src="http://cdn.kendostatic.com/2012.1.515/js/kendo.all.min.js"></script>
<div id="grid" data-pageable='{"pageSize":4}' data-columns='["text"]' data-bind="source: items" data-role="grid"></div>
CSS
.selected{
background: red;
color: white;
}
JavaScript
var viewModel = kendo.observable({
items: [ { text: "one" }, { text: "two" }, { text: "three" }, { text: "four" }, { text: "five" }, { text: "six" }, { text: "seven" }, { text: "eight" }, { text: "nine" }, { text: "ten"}],
});
kendo.bind(document.body, viewModel);