Files
Moonlight/Moonlight.Client/UI/App.razor
2024-10-07 16:37:18 +02:00

15 lines
538 B
Plaintext

@using Moonlight.Client.UI.Layouts
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<CascadingValue Name="TargetPageType" Value="routeData.PageType">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
</CascadingValue>
</Found>
<NotFound>
<PageTitle>Not found</PageTitle>
<LayoutView Layout="@typeof(MainLayout)">
<p role="alert">Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>