JSFiddle - React, Tailwind, and code Playground

HTML

<input type="text" id="pasteable"/>

JavaScript

$("#pasteable").on('paste',function(event){
    setTimeout(function(){
        alert($("#pasteable").val());
    },100);
});