JSFiddle - React, Tailwind, and code Playground

HTML

<label id="rad1" class="tab1">
    <input type="radio" name="tabGroup1" checked="checked"/>
</label>
<label id="rad2" class="tab2"> 
    <input type="radio" name="tabGroup1"/>
</label>

CSS

.tab1:before{
    content:'Yes';
}
.tab2:before{
    content:'No';
}