JSFiddle - React, Tailwind, and code Playground

HTML

<link rel="stylesheet" type="text/css" href="http://mugifly.github.io/jquery-simple-datetimepicker/jquery.simple-dtpicker.css"/ >
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://mugifly.github.io/jquery-simple-datetimepicker/jquery.simple-dtpicker.js"></script>

<input id="date_time" type="text" >
<div id="logs"></div>

JavaScript

$(function(){
   myDate = new Date();
   myDate .setMonth(myDate.getMonth()+3);
	$('#date_time').appendDtpicker({
	   futureOnly:true,
	   autodateOnStart:false,
	   minTime:"10:00",
	   maxTime:"18:00",
	   maxDate : myDate,
	   closeOnSelected: true  
	});	
});