25 lines
427 B
Plaintext
25 lines
427 B
Plaintext
@using JSMR.Application.VoiceWorks.Queries.Search
|
|
|
|
@if (Products is null)
|
|
{
|
|
<p>Loading…</p>
|
|
}
|
|
else if (Products.Length == 0)
|
|
{
|
|
<p>No results.</p>
|
|
}
|
|
else
|
|
{
|
|
<div class="j-product-items-container">
|
|
@foreach (var product in Products)
|
|
{
|
|
<JProduct Product="@product"></JProduct>
|
|
}
|
|
</div>
|
|
}
|
|
|
|
@code {
|
|
[Parameter]
|
|
public VoiceWorkSearchResult[]? Products { get; set; }
|
|
}
|