JSFiddle - React, Tailwind, and code Playground
HTML
<a href="http://www.google.com" class="open-popup">test</a>
JavaScript
$('.open-popup').click(function(e) {
e.preventDefault();
window.open(this.href, '_blank', 'width=300,height=200');
});