| 12345678910111213141516171819202122232425 |
- @page "/keydata/{FromRoute}"
- @inject NavigationManager NavigationManager
-
- <div class="row px-3 h-100">
- <div class="row no-gutters align-items-center justify-content-center w-100">
- <h1>@FromRoute</h1>
- </div>
- </div>
-
-
- @code {
-
- private void Found() {
- //NavigationManager.NavigateTo("keydata/found");
- }
-
- private void Lost() {
- //NavigationManager.NavigateTo("keydata/lost");
- }
-
- @code {
- [Parameter]
- public string FromRoute { get; set; }
- }
- }
|