JSFiddle - React, Tailwind, and code Playground

by NibblyPig

HTML

<input type='date' />
<div>

</div>

JavaScript

$('input').on('change', function () {
$('div').append("<span>" + new Date().toString() + "</span><br/>");
});