Abra uma nova guia ao clicar em um link reagir
<td onClick={()=> window.open("someLink", "_blank")}>text</td>
Concerned Crocodile
<td onClick={()=> window.open("someLink", "_blank")}>text</td>
const openInNewTab = (url) => {
const newWindow = window.open(url, '_blank', 'noopener,noreferrer')
if (newWindow) newWindow.opener = null
}
<a className="btn btn-primary btn-outline btn-lg" href="https://google.com/" rel="noopener noreferrer" target="_blank">google</a>