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

open tab instead of new window #148

Open lodado opened 1 year ago

lodado commented 1 year ago

hi there! i want to know how to open tab instead of new window

<NewWindow
          name={"_blank"}
          onUnload={() => {
            onClose();
          }}
        >
          {children}
        </NewWindow>

i try like this but it doesn't work (open new window) thank you for your reply!