23 lines
437 B
Plaintext
23 lines
437 B
Plaintext
<div class="row g-3">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">متن</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach (var item in Conditions)
|
|
{
|
|
<tr>
|
|
<td>@item</td>
|
|
</tr>
|
|
}
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
@code {
|
|
[Parameter] public string[] Conditions { get; set; }
|
|
}
|