JSFiddle - React, Tailwind, and code Playground

by Ozren Tkalčec Krznarić

JavaScript

window.onkeydown = function(e){
  if(e.ctrlKey && e.keyCode == 'F'.charCodeAt(0)){
    e.preventDefault();
    // Comment out this last one...
    alert('Ctrl+F');
  }
}