JSFiddle - React, Tailwind, and code Playground

HTML

<a id="premier" href="#">Mon premier lien</a>

<br>

<a tabindex="0">Mon Second lien</a>

CSS

a[tabindex] {
  color: orange;
  cursor: pointer;
}

JavaScript

const a = document.getElementById("premier")
a.onclick = ev => ev.preventDefault()