How to Use Bootstrap in SPFX (SharePoint Framework)
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEif0K_uq0uE228YPz42C5YGInTf4Rt7Rqzq_qPYhToFJpyfMsbPXDS6Wv7SbQfw2TkUtTaYeCy0jlpO5TG9fnXELjPU04CehtipnrJP7RXGXkdf2A7X2zOB6ZjdGGBJXrVVeeSPKV45PeE5/s1600/BootStrap.png)
Npm install jquery -- save npm install @types / jquery -- save npm install bootstrap -- save npm install @types / bootstrap -- save then add the following lines to your config.json file`" externals ": { " jquery ": { " path ": " node_modules / jquery / dist / jquery . min . js ", " globalName ": " jQuery " }, " bootstrap ": { " path ": " node_modules / bootstrap / dist / js / bootstrap . min . js ", " globalName ": " jQuery " }` Finally add the following lines to your web part .ts file import * as jQuery from 'jquery' ; import * as bootstrap from 'bootstrap' ;