JSFiddle - React, Tailwind, and code Playground
HTML
<span id="spanDate"></span>
JavaScript
var months = ['01','02','03','04','05','06','07',
'08','09','10','11','12'];
var tomorrow = new Date(Date.now());
//tomorrow.setTime(tomorrow.getTime() + (1000*3600*24));
document.getElementById("spanDate").innerHTML = ('00' + tomorrow.getDate()).slice(-2) + "/" + months[tomorrow.getMonth()] + "/" + tomorrow.getFullYear();