Files
moadiran/TaxPayerFull/CUSComponent/Notifications.razor

12 lines
288 B
Plaintext
Raw Normal View History

2024-06-24 17:33:26 +03:30
@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; }
}