JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://cdn.kendostatic.com/2012.1.322/js/kendo.all.min.js"></script>
<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">
<input id="currency" type="number" value="30" min="0" step="1" max="100" />
<input id="currency2" type="number" data-role="numerictextbox" value="30" min="0" step="1" max="100" data-decimals="0" data-format="n0"/>

JavaScript

$("#currency").kendoNumericTextBox({
    decimals: 0,
    format: "n0"
});

kendo.bind($("#currency2"), {});