JSFiddle - React, Tailwind, and code Playground
datePicker
HTML
<link rel="stylesheet" href="http://hackingon.net/files/jquery_datepicker/ui.all.css">
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.5.3/jquery-ui.min.js"></script>
<input id="date1" type="textbox"/>
<input id="date2" type="textbox"/>
CSS
body { margin-top: 700px; }
JavaScript
$(document).ready(function(){
$("#date1, #date2").datepicker({
dateFormat: 'yy/mm/dd'
});
});