JSFiddle - React, Tailwind, and code Playground

by colus001

HTML

<div class="flex-wrapper">
  <div class="flex-1">
    1
  </div>
  <div class="flex-1">
    2
  </div>
</div>

CSS

.flex-wrapper {
  display: flex;
}

.flex-1 {
  flex: 1;
}