PWA Fundvelo der Caritas.
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.

App.razor 440B

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