JSFiddle - React, Tailwind, and code Playground
by Deepak Anand
HTML
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/dojo/1.8/dijit/themes/claro/claro.css">
<!-- Dijit Numberfield -->
<body class="claro">
<div id="number-field"></div>
</body>
JavaScript
// Simple Example: using a stock Dijit widget
require(["dijit/form/NumberTextBox", "dojo/domReady!"], function(NumberTextBox) {
new NumberTextBox({}, "number-field").startup();
});