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.

CaritasServiceFundVeloKeyDataPage.razor 535B

12345678910111213141516171819202122232425
  1. @page "/keydata/{FromRoute}"
  2. @inject NavigationManager NavigationManager
  3. <div class="row px-3 h-100">
  4. <div class="row no-gutters align-items-center justify-content-center w-100">
  5. <h1>@FromRoute</h1>
  6. </div>
  7. </div>
  8. @code {
  9. private void Found() {
  10. //NavigationManager.NavigateTo("keydata/found");
  11. }
  12. private void Lost() {
  13. //NavigationManager.NavigateTo("keydata/lost");
  14. }
  15. @code {
  16. [Parameter]
  17. public string FromRoute { get; set; }
  18. }
  19. }