JSFiddle - React, Tailwind, and code Playground
HTML
<a href="#">one</a>
<a href="#">two</a>
<a href="#">three</a>
CSS
.active { color: blue;}
JavaScript
$('a').click(function() {
$(this).addClass('active').unbind('click');
$(this).siblings().removeClass('active').bind('click');
});