Login

Accordions

Accordions
Ex.
<div className="accordion">
  <div className="accordion-item rounded">
    <h2 className="accordion-header">
      <button onClick={()=>setActiveTab(item.id)} className="accordion-button border-0 bg-light" type="button"> How does it work ?</button>
    </h2>
    <div id="collapseOne" className="accordion-collapse border-0 collapse show">
      <div className="accordion-body text-muted">
         There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.
      </div>
    </div>
  </div>
 <div className="accordion-item rounded mt-2">
    <h2 className="accordion-header">
      <button className="accordion-button border-0 bg-light collapsed"> Do I need a designer to use Landrick ? </button>
    </h2>
    <div id="collapseTwo" className="accordion-collapse border-0 collapse">
      <div className="accordion-body text-muted">
        There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.
      </div>
    </div>
   </div>
</div>

There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.

There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.

There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.

There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.

There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form.