BugWASMI18N/BlazorWebassemblyI18n/App.razor
AnkitSharma-007 a477f17532 first commit
2020-10-19 18:26:40 +05:30

11 lines
347 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>