React-Bootstrap dropdown not expanding

前端 未结 5 499
攒了一身酷
攒了一身酷 2021-01-02 08:22

I\'ve just started implementing React-Bootstrap in my site, but the NavDropdown component will not expand when clicking on it.

What I did: npm install -s react

5条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-02 08:50

    Your code is working with create-react-app with these dependencies versions, maybe try to update :

    "dependencies": {
        "react": "^16.1.1",
        "react-bootstrap": "^0.31.5",
        "react-dom": "^16.1.1"
      }
    

    Using the same css as your cdn link.

    Btw avoid exporting your component twice (only use export default for a single component file)

    Edit : you're using the same eventkey for 2 menu-item props maybe try to change this.

提交回复
热议问题