parent
eb317e8dc6
commit
9e0d0dfa4b
@ -1,5 +1,6 @@
|
||||
<h3>Card</h3>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
||||
@typeparam TItem
|
||||
<div class="card text-center">
|
||||
@CardHeader(Item)
|
||||
@CardBody(Item)
|
||||
@CardFooter
|
||||
</div>
|
||||
|
@ -0,0 +1,12 @@
|
||||
@typeparam TItem
|
||||
|
||||
<div>
|
||||
@if ((Items?.Count ?? 0) != 0)
|
||||
{
|
||||
@foreach (var item in Items)
|
||||
{
|
||||
@ShowTemplate(item)
|
||||
;
|
||||
}
|
||||
}
|
||||
</div>
|
Loading…
Reference in new issue