JSFiddle - React, Tailwind, and code Playground

HTML

<div id="calendar"></div>test

JavaScript

$(function(){
    $('#calendar').datepicker({
                        numberOfMonths: 3,
                        
                        changeMonth: true,
                        changeYear: true,
                        showButtonPanel: true,
    yearRange : '2007:2015'});

});