Spotify.NET/SpotifyAPI.Web.Examples/Example.ASPBlazor/App.razor
2020-11-13 14:43:00 +01:00

11 lines
324 B
Plaintext

<Router AppAssembly="@typeof(Program).Assembly">
<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>
</Router>