JSFiddle - React, Tailwind, and code Playground
HTML
<a id="option1"
data-id="10"
data-option="21"
href="#"
onclick="goDoSomething(this);">
Click to do something
</a>
JavaScript
function goDoSomething(d){
alert(d.getAttribute("data-id"));
}