I am currently using react-bootstrap and came across this package because it lacks the functionality to select multiple inputs. The react-bootstrap library works using native JavaScript instead of popper.js, but once I import this library, it asks for popper.js library. I am getting following error:
./node_modules/bootstrap/dist/js/bootstrap.js
Module not found: Can't resolve 'popper.js' in 'C:\Users\3atha\code\mahashweta-foundation\node_modules\bootstrap\dist\js'
How do I implement popper.js such that it won't mess with native JavaScript?
I already tried using CDN script tag, but it didn't work.
I am currently using
react-bootstrapand came across this package because it lacks the functionality to select multiple inputs. Thereact-bootstraplibrary works using native JavaScript instead ofpopper.js, but once I import this library, it asks for popper.js library. I am getting following error:How do I implement popper.js such that it won't mess with native JavaScript?
I already tried using CDN
scripttag, but it didn't work.