JSFiddle - React, Tailwind, and code Playground
by Rick Rose
HTML
<script src="//code.jquery.com/ui/1.11.0/jquery-ui.min.js"></script>
<input type="text" id="duedate" placeholder="Date Due" />
JavaScript
$(function() {
//set up jQuery UI datepicker options
$( "#duedate" ).datepicker({
});
});