From c443aad3d0c20ed25b8721b2709b24c6bc7fc33a Mon Sep 17 00:00:00 2001 From: Luke Latham Date: Wed, 18 Nov 2020 08:47:27 -0600 Subject: [PATCH] Fix Blazor migration guidance (#20655) --- aspnetcore/migration/31-to-50.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aspnetcore/migration/31-to-50.md b/aspnetcore/migration/31-to-50.md index 6c3a244fcc..dd03d0ba46 100644 --- a/aspnetcore/migration/31-to-50.md +++ b/aspnetcore/migration/31-to-50.md @@ -358,11 +358,11 @@ For a Blazor WebAssembly project, including the *`Client`* project of a hosted B 1. Update other packages to their latest versions. The latest versions can be found at [NuGet.org](https://www.nuget.org). -1. In `wwwroot/index.html`, change the element that loads the `App` component: +1. In `wwwroot/index.html`, change the element that loads the `App` component to a `
` element with an `id` set to `app`: ```diff -Loading... - +Loading... + +
Loading...
``` 1. In `Program.Main` (`Program.cs`):