I want to implement the multi level drop down using typescript. As I went through the bootstrap css framework, I did not find the required multi-level dropdown
How to create the multi-level dropdown in the angular project using html , css & typescript (I don,t want to use the jQuery)
this is a single level drop-down using bootstrap
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton1" data-bs-toggle="dropdown" aria-expanded="false">
Dropdown button
</button>
<ul class="dropdown-menu" aria-labelledby="dropdownMenuButton1">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</div>
