JSFiddle - React, Tailwind, and code Playground

by cathead

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.2/css/bootstrap.min.css">

<div class="card">
  <div class="card-body">
    <h5 class="card-title">Card title</h5>
    <p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
  </div>
  <div class="card-footer">
    <div class="d-flex justify-content-between">
        <a href="" class="btn btn-secondary">Cancel</a>
        <a href="" class="btn btn-primary">Okay</a>
    </div>
  </div>
</div>