JSFiddle - React, Tailwind, and code Playground

by Divz

HTML

<div class="accordion">
        <div class="title">
                click
    </div>
    <div class="content">
    </div>
</div>

CSS

.accordion{
    width:100%;
    border:1px solid #ccc;
}
.accordion .title{
    width:100%;
    height:30px;
    line-height:30px;
    font-size:12px;
    background-color:#eee;
}
.accordion .content{
    width:100%;
    background-color:#fff;
    height:50px;
}