JSFiddle - React, Tailwind, and code Playground
by cvalleskey
HTML
<p id="dev">
</p>
JavaScript
window.addEventListener('focus', () => {
/* document.getElementById('dev').innerText = new Date().toString(); */
navigator.clipboard.readText().then(() => {
text => document.getElementById('dev').innerText = text;
alert(text)
});
});