18 lines
595 B
Plaintext
18 lines
595 B
Plaintext
@using Learn.VideoAnalysis.Components.Pages
|
|
<Router AppAssembly="typeof(Program).Assembly">
|
|
<Found Context="routeData">
|
|
<CascadingValue Value="routeData">
|
|
@if (routeData.PageType == typeof(Login))
|
|
{
|
|
<RouteView RouteData="@routeData" />
|
|
}
|
|
else
|
|
{
|
|
<RouteView RouteData="routeData" DefaultLayout="typeof(VideoAnalysisRazor.Layouts.BasicLayout)" />
|
|
}
|
|
</CascadingValue>
|
|
<FocusOnNavigate RouteData="routeData" Selector="h1" />
|
|
</Found>
|
|
</Router>
|
|
|
|
<AntContainer /> |