Files
TaskHybrid/Template.Shared/Components/Pages/Notifications.razor

14 lines
276 B
Plaintext

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