PWA Fundvelo der Caritas.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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>