react create browser new tab app code example
Example 1: how to open a new tab in react
//More Secure Solution. For JS only.
const openInNewTab = (url) => {
const newWindow = window.open(url, '_blank', 'noopener,noreferrer')
if (newWindow) newWindow.opener = null
}
//Then add to your onClick
onClick={() => openInNewTab('https://stackoverflow.com')}
Example 2: open in a new tab react
<td onClick={()=> window.open("someLink", "_blank")}>text</td>