Files
TaskHybrid/salesbook.Shared/Components/Pages/Notifications.razor
2025-07-02 14:12:39 +02:00

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");
}
}