JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://harvesthq.github.io/chosen/chosen.jquery.js"></script>
<link rel="stylesheet" href="http://harvesthq.github.io/chosen/chosen.css">
<select data-placeholder="add a foobar" id="foobar" style="width: 350px;">
 <option value=""></option>
    
 <option value="">Hii</option>
 
 <option value="">Hi2</option>
    
 <option value="">Hi4</option>
 </select>

JavaScript

$('#foobar').chosen();

$('#foobar').prop('disabled', true).trigger("liszt:updated");