JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<p>Date: <input type="text" id="datepicker" /></p>
<p>Date: <div id="datepickeri"></div>

JavaScript

$(function() {
    $( "#datepickeri" ).datepicker({
     
      buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif",
      buttonImageOnly: true
    });
  });