JSFiddle - React, Tailwind, and code Playground

by codepo8

HTML

<input type="checkbox" id="html">
<label for="html">I actually know HTML</label>

CSS

input+label::after{
    content:'off';
    background:#c00;
    margin-left: 1em;
  }
  input:checked+label::after{
    content:'on';
    background:#0c0;
  }