JSFiddle - React, Tailwind, and code Playground

HTML

<a href="www.mysite.com" onclick="make(event)">Item</a>

JavaScript

function make(e) {
    console.log('x')
    // e.preventDefault();   // if you want to not go to href url uncoment this
}