bootstrap navbar dropdown not working react

Solutions on MaxInterview for bootstrap navbar dropdown not working react by the best coders in the world

showing results for - "bootstrap navbar dropdown not working react"
Marquis
25 May 2018
1<!-- put this in the between the <head>here</headt> tags -->
2<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
3
4<!-- add this cdn links in the body of your index.js of 
5create-react-app app before the end </body> ta -->
6
7<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" 
8integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" 
9crossorigin="anonymous"></script>
10
11<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" 
12integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" 
13crossorigin="anonymous"></script>
14
15<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" 
16integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" 
17crossorigin="anonymous"></script>