JSFiddle - React, Tailwind, and code Playground
HTML
<a href="https://www.google.com" onclick="sayHello()">Click me</a>
JavaScript
function sayHello(){
alert('both worked');
}
<a href="https://www.google.com" onclick="sayHello()">Click me</a>
function sayHello(){
alert('both worked');
}