JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/themes/smoothness/jquery-ui.css">
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script>
<label for="test1">Datepicker 1</label>
<input type="text" name="test1" class="date">
<br />
<br />
<label for="test1">Datepicker 2</label>
<input type="text" name="test2" class="date">
JavaScript
$(function() {
$(".date").datepicker();
$(".date").datepicker("setDate", new Date);
$("#ui-datepicker-div").wrap('<div class="datepicker" />');
});