diff --git a/docs/lib/Home/index.js b/docs/lib/Home/index.js index 306195f08..7c8124ec4 100644 --- a/docs/lib/Home/index.js +++ b/docs/lib/Home/index.js @@ -48,14 +48,12 @@ export default () => {

Getting Started with Create React App

-

Follow the create-react-app instructions up to the Adding Bootstrap section and instead follow the reactstrap version of adding bootstrap.

+

Follow the Create React App instructions and then follow the Adding Bootstrap instructions.

tl;dr

               
-{`npm install -g create-react-app
-
-create-react-app my-app
-cd my-app/
+{`npx create-react-app my-app
+cd my-app
 npm start`}
               
             
@@ -66,7 +64,7 @@ npm start`}

Install reactstrap and Bootstrap from NPM. Reactstrap does not include Bootstrap CSS so this needs to be installed as well:

               
-  {`npm install bootstrap --save
+  {`npm install --save bootstrap
 npm install --save reactstrap react react-dom`}