JSFiddle - React, Tailwind, and code Playground

by budyniowski

HTML

<div class="container">
<div class="left">
left
</div>
<div class="right">
right
</div>  
</div>

CSS

.container {
  width: 100%;
}

.left {
  float: left;
}

.right {
  float: right;
}