This commit is contained in:
mmrbnjd
2024-06-24 17:33:26 +03:30
parent a1d265bf7f
commit 4631d8f159
4 changed files with 52 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
@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; }
}