Fix typo on CRA's package name (#21219)

The create-react-app installation npm command has a typo: 
```npm install -g react-create-app```
Instead of 
```npm install -g create-react-app```
This commit is contained in:
Sevket Yalcin
2018-10-21 02:26:54 +09:00
committed by Aditya
parent 6d67752093
commit 09189002c6

View File

@ -7,7 +7,7 @@ title: Your first React App
As specified in the previous artice (Installation), run the `Create React App` tool. After everything has finished, `cd` into the folder of your application and run `npm start`. As specified in the previous artice (Installation), run the `Create React App` tool. After everything has finished, `cd` into the folder of your application and run `npm start`.
This will start a development server and you are all set to start developing your app! This will start a development server and you are all set to start developing your app!
```bash ```bash
npm install -g react-create-app npm install -g create-react-app
create-react-app my-first-app create-react-app my-first-app
cd my-first-app cd my-first-app