19 lines
429 B
Plaintext
19 lines
429 B
Plaintext
@page "/Notifications"
|
|
@attribute [Authorize]
|
|
@using salesbook.Shared.Components.SingleElements
|
|
@using salesbook.Shared.Core.Interface
|
|
@inject IPageTitleService PageTitleService
|
|
|
|
@* <HeaderLayout Title="Notifiche" /> *@
|
|
|
|
<div class="container">
|
|
<NoDataAvailable Text="Nessuna notifica meno recente" />
|
|
</div>
|
|
|
|
@code {
|
|
protected override void OnInitialized()
|
|
{
|
|
PageTitleService?.SetTitle("Notifiche");
|
|
}
|
|
|
|
} |