From 360d70e33a9ea8cc797b2545468eab873f31b285 Mon Sep 17 00:00:00 2001 From: Mark Adamson Date: Tue, 23 Jan 2018 20:56:02 +0000 Subject: [PATCH] Adding missing dotnet new react parameter (#5249) Without this, the example won't work --- aspnetcore/spa/react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/spa/react.md b/aspnetcore/spa/react.md index ff55f286e3..7e1adb29d1 100644 --- a/aspnetcore/spa/react.md +++ b/aspnetcore/spa/react.md @@ -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 ```