JSFiddle - React, Tailwind, and code Playground

HTML

<div id="red"></div>
    <div id="green"></div>

CSS

div {
        width: 100px;
        height: 100px;
    }
    
    #red {
        background-color: red;
    }
    
    #green {
        background-color: green;
    }