From e09d617b1bf0432895905013ff42f1f7309b30c3 Mon Sep 17 00:00:00 2001 From: leahtmsft <63820050+leahtmsft@users.noreply.github.com> Date: Tue, 2 Jun 2020 11:43:44 -0700 Subject: [PATCH] Update build-your-first-blazor-app.md (#18635) --- aspnetcore/tutorials/build-your-first-blazor-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aspnetcore/tutorials/build-your-first-blazor-app.md b/aspnetcore/tutorials/build-your-first-blazor-app.md index f0a323ba98..d4de96c252 100644 --- a/aspnetcore/tutorials/build-your-first-blazor-app.md +++ b/aspnetcore/tutorials/build-your-first-blazor-app.md @@ -132,7 +132,7 @@ An [`@foreach`](/dotnet/csharp/language-reference/keywords/foreach-in) loop is u Add a new component to the app that implements a simple todo list. -1. Add a new `Todo` Razor component to the app in the *Pages* folder. In Visual Studio, right-click the **Pages** folder and select **Add** > **New Item** > **Razor Component**. Name the component's file *Todo.razor*. In other development environments, add a blank file to the **Pages** folder named *Todo.razor*. +1. Add a new `Todo` Razor component to the app in the *Pages* folder. If you're using Visual Studio, right-click the **Pages** folder and select **Add** > **New Item** > **Razor Component**. Name the component's file *Todo.razor*. In other development environments, add a blank file to the **Pages** folder named *Todo.razor*. 1. Provide the initial markup for the component: