JSFiddle - React, Tailwind, and code Playground

by merganser

HTML

<script src="//code.jquery.com/jquery-1.12.4.js"></script>
<script src="//code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css">
<div id="datepicker"></div>

JavaScript

const date = new Date();


console.log(date);
var dateOptions = { maxDate: "+0d" };
console.log(dateOptions);
$("#datepicker").datepicker(dateOptions);