JSFiddle - React, Tailwind, and code Playground
HTML
<svg>
<g id="US">
<rect x='10' y='10' fill='#000000' height='100' width='100'></rect>
</g>
</svg>
JavaScript
$("#US").click(function() {
alert($(this).attr("id"));
});