You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 satır
811B

  1. @using Blazored.Modal
  2. @using Microsoft.AspNetCore.Components.Authorization
  3. <CascadingAuthenticationState>
  4. <CascadingBlazoredModal>
  5. <Router AppAssembly="@typeof(App).Assembly">
  6. <Found Context="routeData">
  7. <AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
  8. <FocusOnNavigate RouteData="@routeData" Selector="h1" />
  9. </Found>
  10. <NotFound>
  11. <PageTitle>Not found</PageTitle>
  12. <LayoutView Layout="@typeof(MainLayout)">
  13. <p role="alert">Désolé, il n'y a pas de page à cette adresse.</p>
  14. </LayoutView>
  15. </NotFound>
  16. </Router>
  17. <!--<BlazoredModal />-->s
  18. </CascadingBlazoredModal>
  19. </CascadingAuthenticationState>