This commit is contained in:
mmrbnjd
2024-07-22 14:23:29 +03:30
parent d9fd29dbba
commit a914057557
4 changed files with 111 additions and 17 deletions

View File

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