JSFiddle - React, Tailwind, and code Playground
HTML
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/i18n/jquery-ui-i18n.min.js"></script>
<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/themes/base/jquery-ui.css" media="screen, projection" />
<input type="text" id="dob" name="dob" />
JavaScript
$( document ).ready( function() {
$( "#dob" ).datepicker({
changeMonth: true,
changeYear: true
}).datepicker( "option", $.datepicker.regional[ "" ]);
});