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()
 });
});