Files
TaskHybrid/salesbook.Shared/Components/Pages/Notifications.razor
2025-06-26 10:08:21 +02:00

14 lines
278 B
Plaintext

@page "/Notifications"
@attribute [Authorize]
@using salesbook.Shared.Components.Layout
@using salesbook.Shared.Components.SingleElements
<HeaderLayout Title="Notifiche" />
<div class="container">
<NoDataAvailable Text="Nessuna notifica meno recente" />
</div>
@code {
}