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```
pull/24508/head
Sevket Yalcin 2018-10-21 02:26:54 +09:00 committed by Aditya
parent 6d67752093
commit 09189002c6
1 changed files with 1 additions and 1 deletions

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`.
This will start a development server and you are all set to start developing your app!
```bash
npm install -g react-create-app
npm install -g create-react-app
create-react-app my-first-app
cd my-first-app