JSFiddle - React, Tailwind, and code Playground
HTML
<h3>Jquery Datepicker Format</h3>
Date :
<input id="Datepicker" type="text" />
<br />
JavaScript
$(function () {
$('#Datepicker').datepicker({
beforeShowDa : $.datepicker.noWeekends
});
})