Adding missing dotnet new react parameter (#5249)

Without this, the example won't work
pull/5250/head
Mark Adamson 2018-01-23 20:56:02 +00:00 committed by Rick Anderson
parent 92478b7ff5
commit 360d70e33a
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ To get started, ensure you've [installed the updated React project template](xre
Create a new project from a command prompt using the command `dotnet new react` in an empty directory. For example, the following commands create the app in a *my-new-app* directory and switch to that directory:
```console
dotnet new -o my-new-app
dotnet new react -o my-new-app
cd my-new-app
```