JSFiddle - React, Tailwind, and code Playground

HTML

Paste into here: <input id="textBox">

JavaScript

document.getElementById("textBox").onpaste = function(evt) {
    alert(evt.clipboardData.getData("text/plain"));
};