@nooks_seo/use-prevent-leave
v1.0.0
Published
React Hook to prevent users from accidentally leaving or closing the page.
Maintainers
Readme
@nooks_seo/use-prevent-leave
React Hook to prevent users from accidentally leaving or closing the page.
📦 설치
npm install @nooks_seo/use-prevent-leave
# 또는
yarn add @nooks_seo/use-prevent-leave사용 방법
import React from "react";
import { usePreventLeave } from "@nooks_seo/use-prevent-leave";
function App() {
const { enablePrevent, disablePrevent } = usePreventLeave();
return (
<div>
<h1>Prevent Leaving Example</h1>
<button onClick={enablePrevent}>Enable Prevent</button>
<button onClick={disablePrevent}>Disable Prevent</button>
</div>
);
}
export default App;