JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.9.1/dojo/resources/dojo.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.9.1/dijit/themes/claro/claro.css">
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/dojo/1.9.1/dojox/grid/resources/claroGrid.css">
<body class="claro">
<select data-dojo-type="dijit/form/FilteringSelect"
data-dojo-props="displayedValue:'Select'" id="count" name="count">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3" disabled>Three</option>
<option value="4" disabled="disabled">Three</option>
</select>
</body>
JavaScript
require([
"dojo/parser",
"dijit/form/FilteringSelect",
"dojo/domReady!"
], function(parser) {
parser.parse();
});