Skip to content

Instantly share code, notes, and snippets.

@vertonghenb
Created October 26, 2020 22:36
Show Gist options
  • Save vertonghenb/15bafdf7f90d8b3f7a4466a0950c9528 to your computer and use it in GitHub Desktop.
Save vertonghenb/15bafdf7f90d8b3f7a4466a0950c9528 to your computer and use it in GitHub Desktop.
Default Blazor.Fast App.Razor
<SystemProvider Theme="new ThemeProvider(ThemeType.Fast)" use-defaults>
<Router AppAssembly="@typeof(Program).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
</Found>
<NotFound>
<LayoutView Layout="@typeof(MainLayout)">
<p>Sorry, there is nothing at this address.</p>
</LayoutView>
</NotFound>
</Router>
</SystemProvider>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment