UI_SequentMicrosystems-RPI/Pages/Start.razor

27 lines
357 B
Plaintext
Raw Normal View History

2023-12-16 07:59:53 +00:00
@page "/"
@using UI_SequentMicrosystems.Services
@inject NavigationManager Navigator
@inject RTD8TMService _RTD8TMService
<PageTitle>Home</PageTitle>
<h1>Hello, world!</h1>
Welcome to your new app.
@code{
protected override void OnInitialized()
{
_RTD8TMService.SetAddress("http://10.1.20.5/");// Navigator.BaseUri);
2023-12-16 07:59:53 +00:00
}
}