I would like to create a sideNavbar with multiple dropdown buttons so once you click on one it should show the Sub Categorys from the main Category
what would be the best way to achive this in reactjs.
<div class="sidenav">
<a href="#about">About</a>
<div className="categorys">
<button class="dropdown-btn">Products
<i class="fa fa-caret-down"></i>
</button>
<div className="extraTitles">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<div className="categorys">
<button class="dropdown-btn">Users
<i class="fa fa-caret-down"></i>
</button>
<div className="extraTitles">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<div className="categorys">
<button class="dropdown-btn">Analytics
<i class="fa fa-caret-down"></i>
</button>
<div className="extraTitles">
<a href="#">Link 1</a>
<a href="#">Link 2</a>
<a href="#">Link 3</a>
</div>
</div>
<a href="#contact">Search</a>
</div>