UNPKG

@smitch/fluid

Version:

A lightweight, Tailwind-powered React/Next.js UI component library.

14 lines 497 B
import { useEffect } from 'react'; export var useDisableBack = function () { useEffect(function () { window.history.pushState(null, document.title, window.location.href); function onBackButtonEvent(e) { e.preventDefault(); } window.addEventListener('popstate', onBackButtonEvent); return function () { window.removeEventListener('popstate', onBackButtonEvent); }; }, []); }; //# sourceMappingURL=useDisableBack.js.map