Continous Integration in der Praxis Gruppenarbeit
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.

11 lines
378 B

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