JSFiddle - React, Tailwind, and code Playground

by shapeshifta

JavaScript

//prevent back button
            window.location.hash = '#no-back';

            if (location.hash === '#no-back') {
                location.hash = '#stay';

                window.onhashchange = function () {
                    if (location.hash === '#no-back') {
                        location.hash = '#stay';
                    }
                }
            }        

//prevent back button
            window.location.hash = '#1';
//prevent back button
            window.location.hash = '#2';