JSFiddle - React, Tailwind, and code Playground
HTML
<label>Paste</label>
<input id=""/>
<br>
<label>No Paste</label>
<input id="no_paste"/>
JavaScript
$('#no_paste').bind("paste", function(e) {
e.preventDefault();
});