JSFiddle - React, Tailwind, and code Playground

by Joe

HTML

<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css">
<input id="date">

JavaScript

$(document).ready(function() {
  $(function() {
    $("#date").datepicker({
      dateFormat: "yy-mm-dd"
    }).datepicker("setDate", "0");
  });
});