JSFiddle - React, Tailwind, and code Playground
JavaScript
$(document).keydown(function(event) {
if (event.keyCode == 17) {
alert("You caught...");
event.preventDefault();
}
});