React bootstrap not styling my react components

后端 未结 5 1017
无人共我
无人共我 2021-02-12 14:22

Just started out using React yesterday so setting up a demo app. Environment is:

  1. Typescript
  2. Webpack
  3. React & React DOM

I\'m try

5条回答
  •  盖世英雄少女心
    2021-02-12 15:02

    First of what you need to is to Install Bootstrap using NPM

    npm install --save bootstrap
    

    then

    go for writing this statement in which component you have to use bootstrap, This works in my case.

    import 'bootstrap/dist/css/bootstrap.css';
    

    CSS Styling will start working. :)

    Happy Coding!

提交回复
热议问题