Skip to content

Instantly share code, notes, and snippets.

@matiasherranz
Created February 9, 2023 15:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matiasherranz/cb28f850085a1a4bdb6f9a4c840e6900 to your computer and use it in GitHub Desktop.
Save matiasherranz/cb28f850085a1a4bdb6f9a4c840e6900 to your computer and use it in GitHub Desktop.
Open in new tabb method for onClick callback.
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