Patch Blazor Layout topic example (#17755)

pull/17756/head
Luke Latham 2020-04-12 09:01:42 -05:00 committed by GitHub
parent 57141a3969
commit 2cb0d40a66
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" /> <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found> </Found>
<NotFound> <NotFound>
<LayoutView Layout="typeof(MainLayout)"> <LayoutView Layout="@typeof(MainLayout)">
<h1>Page not found</h1> <h1>Page not found</h1>
<p>Sorry, there's nothing at this address.</p> <p>Sorry, there's nothing at this address.</p>
</LayoutView> </LayoutView>