...
This commit is contained in:
22
TaxPayerFull/CUSComponent/SpecialConditions.razor
Normal file
22
TaxPayerFull/CUSComponent/SpecialConditions.razor
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user