I have a Component with table template.
This is part:
<tr *ngFor="let stat of statistic" class="stripped">
<td>{{stat.date | date:"shortDate"}}</td>
<td>{{stat.hits | number }}</td>
<td>{{stat.unique | number }}</td>
<td>{{stat.registrations| number }}</td>
<td>{{stat.conversion | number }}</td>
<td>{{stat.deposit | number }}</td>
<td>{{stat.ftd | number }}</td>
<td class="bold">{{stat. deals | number }}</td>
<td class="bold colored">{{stat.profit| currency:'USD':true:'1.2' }}</td>
</tr>
But instead of tr I need to insert two. If I try to use it as another component, a table breaks.
Is there a tricky way to insert another tr after each tr in cycle? Or maybe has a way of exchange Component selector on his template