We have a legacy ASP.NET Core MVC app and are migrating it to Blazor Interactive Server one view/page at a time. We have Blazor Interactive Razor Components in a MVC Razor View working. What is the guidance on the TelerikRootComponent in this scenario? There is no Blazor interactive layout file to place it in w/ this use case.
<div class="alert alert-dark" role="alert">
This is an ASP.NET Core MVC Razor View/Page.
</div>
<div class="card">
<div class="card-header">
Blazor Interactive Server Component
</div>
<div class="card-body">
<component type="typeof(MyWeb.Components.Tests.Test)" render-mode="ServerPrerendered" />
</div>
</div>