18 lines
510 B
Plaintext
18 lines
510 B
Plaintext
<div class="products-grid">
|
|
@for (int i = 0; i < Count; i++)
|
|
{
|
|
<div class="card">
|
|
<BitShimmer IsDataLoaded="false" Height="160px" Width="100%" />
|
|
<div class="card-body">
|
|
<BitShimmer IsDataLoaded="false" Height="16px" Width="70%" class="mt-2" />
|
|
<BitShimmer IsDataLoaded="false" Height="12px" Width="40%" class="mt-1" />
|
|
</div>
|
|
</div>
|
|
}
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter]
|
|
public int Count { get; set; } = 12;
|
|
}
|