JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
<script src="https://code.jquery.com/jquery-1.9.1.js"></script>
<script src="https://code.jquery.com/ui/1.12.0/jquery-ui.js"></script>
</head>
<body>
<form>
<input type="textbox" id="txt" />
</form>
</body></html>
JavaScript
var calendarOptions = {
yearRange: "1950:2000",
dateFormat: 'yy-mm-dd',
changeMonth: true,
changeYear: true
}
$(function () {
$("#txt").datepicker(calendarOptions);
});