I want to build action before the user close the web tab in Reactjs. This time, I try to use beforeunload
but it's not working. How can I try to run it when the web tab is closed.
componentDidMount() {
window.addEventListener("beforeunload", this.onClose());
}
onClose = () => {
...
}
onClose
is not working.