Files
limanapp/LiMan.UI/Pages/Index.razor
T
Samuele Locatelli 521eb158b0 Update LiMan
2021-10-21 10:03:57 +02:00

20 lines
384 B
Plaintext

@page "/"
@using LiMan.UI.Data
@inject MessageService AppMService
<h1>Gestore licenze EgalWare</h1>
<p>Prego selezionare il modulo desiderato tra quelli disponibili</p>
@code
{
protected override async Task OnInitializedAsync()
{
AppMService.ShowSearch = false;
AppMService.PageName = "Home";
AppMService.PageIcon = "fas fa-home pr-1";
}
}