I'm currently using "@progress/kendo-theme-bootstrap": "^4.41.1" and i''m having some issue with the navbar.
The hamburger menu button doesn't work. It doesn't collapse the menu on mobile view. What am I missing here? please see my code below.
On the side note, is there any plan to make the appbar component responsive? Also, I hope in the future the appbar component can be seamlessly integrated with react-router.
export default function NavMenu() {
return (
<>
<nav className="navbar navbar-expand-md">
<div className="container">
<NavLink to="/" exact className='navbar-brand'>
<img src={Logo} alt="Logo" />
</NavLink>
<button className="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent">
<span className="icon-menu"></span>
</button>
<div className="collapse navbar-collapse" id="navbarSupportedContent">
<ul className="navbar-nav me-auto mb-2 mb-lg-0">
<MenuLinkItem to={'/home'} label='Home' icon='icon-dashboard' />
<MenuLinkItem to={'/users'} label='Users' icon='icon-user' />
</ul>
<NavLink to="/account"> Username</NavLink>
<NavLink to="/login" exact className='k-button k-flat' >Sign out</NavLink>
</div>
</div>
</nav>
</>
)
}