JSFiddle - React, Tailwind, and code Playground

by uikolas

HTML

<div id="slenkam">
    <h3>Labas</h3>         
    <div><p>Pirmo labas</p></div>
    <h3>Labas2</h3>         
    <div><p>antro labas</p></div>    
</div>

JavaScript

$(function() {
    $("#slenkam").accordion({
        collapsible: true,
        heightStyle: "content",
        active: false
    });
});