diff --git a/docusaurus/docs/adding-bootstrap.md b/docusaurus/docs/adding-bootstrap.md index dc97b6cab94..7def64b5720 100644 --- a/docusaurus/docs/adding-bootstrap.md +++ b/docusaurus/docs/adding-bootstrap.md @@ -3,6 +3,31 @@ id: adding-bootstrap title: Adding Bootstrap --- +Install Bootstrap from npm. + +```sh +npm install --save bootstrap@4 +``` + +Import Bootstrap CSS in the beginning of your `src/index.css` file: + +```index.css +@import "../node_modules/bootstrap/dist/css/bootstrap.css"; +``` + +Now, you are ready to use bootstrap. + +```Sample Usage +const sample = () => ( +