Created
February 9, 2023 15:18
-
-
Save matiasherranz/cb28f850085a1a4bdb6f9a4c840e6900 to your computer and use it in GitHub Desktop.
Open in new tabb method for onClick callback.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const openInNewTab = (url: string) => { | |
const newWindow = window.open(url, '_blank', 'noopener,noreferrer') | |
if (newWindow) newWindow.opener = null | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment