12 lines
288 B
Plaintext
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; }
|
|
}
|