JSFiddle - React, Tailwind, and code Playground

by Eduard Dyckman

HTML

<div class="chart">
  <div class="rect">
   
  </div>
  <div class="rect">
  
  </div>
  <div class="rect">
  
  </div>
  <div class="rect">
  
  </div>
</div>

CSS

.chart {
  display: flex;
  height: 200px;
}
.rect {
  width: 50px;
  background-color: blue
}