react-bootstrap: Navbar toggle doesn't work.

Hey guys,

I am trying to get the Navbar toggle to work but it doesn’t seem to be working. Here is my code:

<Navbar staticTop={true} fluid={true} brand={brand} toggleButton>

Anyone?

About this issue

  • Original URL
  • State: closed
  • Created 10 years ago
  • Comments: 15 (4 by maintainers)

Commits related to this issue

Most upvoted comments

You have to add property toggleNavKey={key} like

<Navbar staticTop={true} fluid={true} brand={brand} toggleButton toggleNavKey={1}>
  <Nav key={1}>
    ...
  </Nav>
</Navbar>