JSFiddle - React, Tailwind, and code Playground

HTML

<div class="protected">
    <a href="#">1Text</a>
</div>

JavaScript

$(document).ready(function(){

    $('.protected').children('a').attr('rel', 'nofollow');
    
})