I have to use bootstrap with reactjs and when i try to import Bootstrap.js it gives me error
Bootstrap’s JavaScript requires jQuery
Here is my import statements (I tried following)
import $ from 'jquery';
import jQuery from 'jquery'; //I installed jquery using npm
import '@shopify/polaris/jquery'; //I put jquery.js file
import '@shopify/polaris/bootstrap';
Nothing is seems to work here.
3
Answers
You can use React Bootstrap as well as an alternative. It has all elements of the Bootstrap plus it blends well with ReactJS elements.
in your HTML file:
Bootstrap requires jquery to be available on the global object. Try the below –
I have verified it for [email protected] and [email protected].
Ref – issue