Main.razor 425 B

1234567891011
  1. <Router AppAssembly="@typeof(Main).Assembly">
  2. <Found Context="routeData">
  3. <RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
  4. <FocusOnNavigate RouteData="@routeData" Selector="h1" />
  5. </Found>
  6. <NotFound>
  7. <LayoutView Layout="@typeof(MainLayout)">
  8. <p role="alert">Sorry, there's nothing at this address.</p>
  9. </LayoutView>
  10. </NotFound>
  11. </Router>