JSFiddle - React, Tailwind, and code Playground

HTML

<div class="wrap">
    <input type="radio" /><label>Press</label>
</div>

CSS

div.wrap label {
    float: left;
}

.wrap input[type=radio]:checked + label {
    color: red;
}