We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb94589 commit 5ee655bCopy full SHA for 5ee655b
packages/react-scripts/template/README.md
@@ -560,11 +560,13 @@ npm install react-bootstrap --save
560
npm install bootstrap@3 --save
561
```
562
563
-Import Bootstrap CSS and optionally Bootstrap theme CSS in the ```src/index.js``` file:
+Import Bootstrap CSS and optionally Bootstrap theme CSS in the beginning of your ```src/index.js``` file:
564
565
```js
566
import 'bootstrap/dist/css/bootstrap.css';
567
import 'bootstrap/dist/css/bootstrap-theme.css';
568
+// Put any other imports below so that CSS from your
569
+// components takes precedence over default styles.
570
571
572
Import required React Bootstrap components within ```src/App.js``` file or your custom component files:
0 commit comments