JSFiddle - React, Tailwind, and code Playground

by Jake Overall

HTML

<div class="box red"></div>
<div class="box yellow"></div>
<div class="box green"></div>

CSS

.box {
    height: 100px;
    width: 100px;
    border: 1px solid black;
}
.red {
    background-color: red;
}
.green {
    background-color: green;
}
.yellow{
    background-color: yellow;
}