rmariuzzo / react-new-window

🔲 Pop new windows in React, using `window.open`.
https://rmariuzzo.github.io/react-new-window/
MIT License
442 stars 107 forks source link

onClose / onLeave #120

Closed dor1202 closed 1 year ago

dor1202 commented 2 years ago

Is there an event for leaving / closing the new window?

rmariuzzo commented 1 year ago

First of all, I apologize for the long delay. I believe you can use onUnload prop.


<NewWindow onUnload={() => {
  // do something
}} />