JSFiddle - React, Tailwind, and code Playground
HTML
<div>
<textarea></textarea>
<textarea></textarea>
</div>
<a href="#" class="add">add</a>
<div>
<textarea></textarea>
<textarea></textarea>
</div>
JavaScript
$('.add').click(function(event){
event.preventDefault();
$(this).next('div').find('textarea:visible').first().focus();
});