12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import { useEffect } from '@node_modules/preact/hooks'
|
|
|
|
export const useBeforeUnload = (): void => {
|
|
useEffect(() => {
|
|
window.onbeforeunload = () => true
|
|
|
|
return () => {
|
|
window.onbeforeunload = null
|
|
}
|
|
}, [])
|
|
}
|