JSFiddle - React, Tailwind, and code Playground

by Bob Jones

HTML

<div class="flex">
  <h2>
    This is display block.
  </h2>
  <button>
    This is not.
  </button>
</div>

CSS

.flex {
  flex-direction: row;
  display: flex;
}