JSFiddle - React, Tailwind, and code Playground

by Shaunak Deshpande

HTML

<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/black-tie/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<p>Date: <input type="text" id="datepicker"/></p>

JavaScript

$(function () {
    $("#datepicker").datepicker();
});