JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://guestbook7771.appspot.com/jquery-ui.js"></script>
<title>Last35Days</title>
<body>
    <p>Date:
        <div id="datepicker"></div>
    </p>
</body>

CSS

div.ui-datepicker {
    font-size:10px;
}
/*.ui-datepicker-header{display:none;}*/

JavaScript

$(function () {
    var $datePicker = $("#datepicker");
    $datePicker.datepicker({
        defaultDate: "-25d",
                        minDate: "-40d",
                        maxDate: "+2d",
        
        
    });
    
});