JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://www.mnet.co.il/MaintMngment/Scripts/bootstrap-datepicker.js"></script>
<link rel="stylesheet" href="http://www.mnet.co.il/MaintMngment/Style/bootstrap-datepicker.css">
<input id="input_date" class="calendar" />
 <table border="0" cellpadding="0" cellspacing="0">
            <tr>
                <td style="height:800px; width:200px;">Hi!!!
                </td>
            </tr>
        </table>

JavaScript

$(document).ready(function () {

    $(".calendar").datepicker({
        format: "dd/mm/yyyy",
        todayBtn: "linked",
        autoclose: true,
        forceParse: false,
        todayHighlight: true
    });
});