<NavLink target="_blank" to={{ pathname: "mailto:test@gmail.com" }}> <h3>Say hi...</h3> </NavLink> <NavLink style={{ color: "inherit" }} to={{ pathname: "https://github.com/user" }} target="_blank" > <LinkedIn width={30} height={25} fill="currentColor" /> </NavLink> Aquí estoy usando NavLink para llegar a un enlace externo. Pero cuando hago clic en el enlace, me redirige a http://localhost:3000/mailto:test@gmail.com. usar a en lugar de NavLink está funcionando bien.
¿Hay alguna manera de que pueda funcionar con NavLink?
Gracias de antemano
Prueba algo como esto
<NavLink as="a" target="_blank" href="mailto:test@gmail.com"> <h3>Say hi...</h3> </NavLink>