JSFiddle - React, Tailwind, and code Playground

by khamer

HTML

<div class="example">
  <div>Lorem.</div>
  <div>Neque?</div>
</div>

SCSS

.example {
    display: grid;
    grid-template-areas: "stack";
}

.example > * {
    grid-area: stack;
}