Files
moadiran/TaxPayerFull/CUSComponent/Notifications.razor
mmrbnjd 4631d8f159 ...
2024-06-24 17:33:26 +03:30

12 lines
288 B
Plaintext

@using Shared.DTOs
<h3>Notifications</h3>
<h3>@items.Count()</h3>
<Alert Color="AlertColor.Warning" Dismissable="true"> <strong>Holy guacamole!</strong> You should check in on some of those fields below. </Alert>
@code {
[Parameter] public List<AlertDTO> items { get; set; }
}