JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" href="http://eternicode.github.io/bootstrap-datepicker/bootstrap-datepicker/css/datepicker.css">
<script src="http://eternicode.github.io/bootstrap-datepicker/bootstrap-datepicker/js/bootstrap-datepicker.js"></script>
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
<div class="input-append date" id="dp3" data-date="12-02-2012" data-date-format="dd-mm-yyyy">
    <input type="text" id="datepicker" /> <span class="add-on"><i class="icon-calendar" id="cal2"></i></span>
</div>

JavaScript

$("#dp3").datepicker({
            changeMonth: true,
            changeYear: true
        });
$("#cal2").datepicker({
            changeMonth: true,
            changeYear: true
        });