JSFiddle - React, Tailwind, and code Playground

by lun471k

JavaScript

document.body.focus();
document.onkeydown = function(e){
    var event = (window.event || e);
    if(event.keyCode==116){
        event.preventDefault();
        alert("This action is not allowed");
    }
}