JSFiddle - React, Tailwind, and code Playground

HTML

<input name="setTodaysDate" type="date">

JavaScript

var today = new Date() + 1;toISOString().split('T')[0];
var tomorrow = today.toISOString().split('T')[0];
document.getElementsByName("setTodaysDate")[0].setAttribute('min', today);