JSFiddle - React, Tailwind, and code Playground
HTML
Intenta pegar algo: <input type = "text" autofocus />
JavaScript
var input = document.getElementsByTagName("input")[0];
input.addEventListener("paste", function(e){
e.preventDefault();
}, false);