JSFiddle - React, Tailwind, and code Playground
by raad
HTML
<div class="row">
<div id="region1" class="col-lg-6 col-md-6 col-sm-12 col-xs-12">Region 1</div>
<div id="region2" class="col-lg-6 col-md-6 col-sm-12 col-xs-12">Region 2</div>
</div>
CSS
#region1 {
background-color: pink;
}
#region2 {
background-color: skyblue;
}