JSFiddle - React, Tailwind, and code Playground

by Andrey

HTML

<form>


<div>
          <input type="radio" name="test" id="one" value="1" />
          <label for="one" className="peer-checked:block bg-blue-800">
            one
          </label>
          <input type="radio" name="test" id="two" value="2" />
          <label for="two" className=" bg-blue-800">
            two
          </label>
        </div>
        </form>