17 lines
626 B
Plaintext
17 lines
626 B
Plaintext
<Router AppAssembly="@typeof(App).Assembly">
|
|
<Found Context="routeData">
|
|
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MemphisWeatherApp.Layout.MainLayout)" />
|
|
<FocusOnNavigate RouteData="@routeData" Selector="h1" />
|
|
</Found>
|
|
<NotFound>
|
|
<PageTitle>Not found</PageTitle>
|
|
<LayoutView Layout="@typeof(MemphisWeatherApp.Layout.MainLayout)">
|
|
<MudText Typo="Typo.h4" Class="my-5">Sorry, there's nothing at this address.</MudText>
|
|
</LayoutView>
|
|
</NotFound>
|
|
</Router>
|
|
|
|
<MudThemeProvider />
|
|
<MudDialogProvider />
|
|
<MudSnackbarProvider />
|