JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<html>
<body>
<h2>
Try to Copy the text
</h2>
<div>
<p>
If, for some reason, you would like to prevent users from copying and pasting text from your web pages through Ctrl-C Ctrl-V, or using the mouse, jQuery can help.
</p>
</div>
</body>
</html>

JavaScript

$('body').bind('copy paste cut drag drop', function (e) {
   e.preventDefault();
});