Skip to content

Instantly share code, notes, and snippets.

@johnotu
Last active October 19, 2020 19:11
Show Gist options
  • Save johnotu/be25011c438219b457175b32c2f35e27 to your computer and use it in GitHub Desktop.
Save johnotu/be25011c438219b457175b32c2f35e27 to your computer and use it in GitHub Desktop.
Bootstrap Navbar-collapse with dynamic collapse class
<div class={`${isNavCollapsed ? 'collapse' : ''} navbar-collapse`} id="navbarsExample09">
<a className="nav-link text-info" href="/contact">Support</a>
<a className="nav-link text-info" href="/login">Login</a>
<a href="/request-demo" className="btn btn-sm btn-info nav-link text-white" >Request demo</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment