JSFiddle - React, Tailwind, and code Playground

by kiokotzu

HTML

<input type="text" class="esteban">

JavaScript

$(function(){
    var theDate = new Date();
    theDate.setDate(theDate.getDate()+1);
    $(".esteban").datepicker({minDate: theDate});
})