JSFiddle - React, Tailwind, and code Playground
HTML
<input type="text" value="01-June-2014"/>
JavaScript
$('body').on('focus', 'input', function() {
$(this).datepicker({
dateFormat: 'dd-MM-yy',
defaultDate: $(this).val()
});
});
<input type="text" value="01-June-2014"/>
$('body').on('focus', 'input', function() {
$(this).datepicker({
dateFormat: 'dd-MM-yy',
defaultDate: $(this).val()
});
});