JSFiddle - React, Tailwind, and code Playground
HTML
<!-- Using straight up HTML and jQuery UI's CSS -->
<div id="progressbar" class="ui-progressbar ui-widget ui-widget-content ui-corner-all">
<div class="ui-progressbar-value ui-widget-header ui-corner-left" style="width:59%;"></div>
</div>
CSS
@import "http://view.jqueryui.com/master/themes/base/jquery.ui.all.css";
/* Space out the example */
#progressbar {
margin: 20px;
}
JavaScript
$(function() {
// Using jQuery UI's JavaScript
// Uncomment the following to enable the jQuery UI
// ProgressBar events.
/*
$( "#progressbar" ).empty().progressbar({
value: 59
});
*/
});