Spotify.NET/SpotifyAPI.Web.Examples/Example.BlazorWASM/App.razor

11 lines
321 B
Plaintext
Raw Normal View History

2020-06-04 13:42:16 +01:00
<Router AppAssembly="@typeof(Program).Assembly">
2020-11-13 13:43:00 +00:00
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there's nothing at this address.</p>
</LayoutView>
</NotFound>
2020-06-04 13:42:16 +01:00
</Router>