From 8142f2658b7c85e96f7f85e10331f182d4135620 Mon Sep 17 00:00:00 2001 From: doterik <4037602+doterik@users.noreply.github.com> Date: Mon, 6 May 2019 17:41:18 +0200 Subject: [PATCH] Changed directory structure. (#12241) Think new templates have simplified the directory structure. --- aspnetcore/tutorials/build-your-first-blazor-app.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/tutorials/build-your-first-blazor-app.md b/aspnetcore/tutorials/build-your-first-blazor-app.md index 4680cd6bbf..b195e3989c 100644 --- a/aspnetcore/tutorials/build-your-first-blazor-app.md +++ b/aspnetcore/tutorials/build-your-first-blazor-app.md @@ -132,9 +132,9 @@ Add a new component to the app that implements a simple todo list. 1. Add the Todo component to the navigation bar. - The NavMenu component (*Pages/Shared/NavMenu.razor*) is used in the app's layout. Layouts are components that allow you to avoid duplication of content in the app. For more information, see . + The NavMenu component (*Shared/NavMenu.razor*) is used in the app's layout. Layouts are components that allow you to avoid duplication of content in the app. For more information, see . - Add a `` for the Todo component by adding the following list item markup below the existing list items in the *Pages/Shared/NavMenu.razor* file: + Add a `` for the Todo component by adding the following list item markup below the existing list items in the *Shared/NavMenu.razor* file: ```cshtml