JSFiddle - React, Tailwind, and code Playground

JavaScript

function warning(){
    if(true){
      console.log('leaving');
      return "You are leaving the page";
    }
}
window.onbeforeunload = warning;