JSFiddle - React, Tailwind, and code Playground

by oilvier

HTML

<div class="tab-content">
  <div class="tab-pane active">Coucou</div>
</div>

CSS

.tab-content > .tab-pane.active {
    display: block;
}
.tab-content > .tab-pane {
   display: none;
}