We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 667e877 commit bb072d2Copy full SHA for bb072d2
test/Blazor.Extensions.Logging.Test/App.razor
@@ -1,5 +1,14 @@
1
-<!--
2
- Configuring this here is temporary. Later we'll move the app config
3
- into Program.cs, and it won't be necessary to specify AppAssembly.
4
--->
5
-<Router AppAssembly="typeof(Program).Assembly" />
+<!--
+ Configuring this here is temporary. Later we'll move the app config
+ into Program.cs, and it won't be necessary to specify AppAssembly.
+-->
+<Router AppAssembly="typeof(Program).Assembly" >
6
+ <Found Context="routeData">
7
+ <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
8
+ </Found>
9
+ <NotFound>
10
+ <LayoutView Layout="@typeof(MainLayout)">
11
+ <p>Sorry, there's nothing at this address.</p>
12
+ </LayoutView>
13
+ </NotFound>
14
+</Router>
0 commit comments