Using visual studio 2019 preview 2.0, .NET core SDK 3.0.100-preview8-013656. Server-side blazor application.
The blazor docs say the way to render a component is to call Html.RenderComponentAsync. I can't find this static Html class anywhere.
In the SDK directory, when I look inside Microsoft.AspNetCore.Components.dll, I see it has an HtmlRenderer class with such a method, but it's not static.
When I look at AspNetCore source, I see an HtmlHelperComponentExtensions class in namespace Microsoft.AspNetCore.Mvc.Rendering
MVC? I'm very confused. I'm using the latest SDK, is the doc simply old?
If I try to navigate directly to the route for my component, I just get (await Html.RenderComponentAsync()) written directly to my document along with signalR exceptions to the console.