JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/dot-luv/jquery-ui.css">
<input type="text" name="begin-date" id="begin-date" value="" />
<input type="text" id="alt-date" />
JavaScript
$("#begin-date").datepicker({
dateFormat: "M d",
altFormat: "yy-mm-dd",
altField: "#alt-date"
});