Is it possible to insert a component into another parent component and pass data to the child component from the parent component?
- User Component
- Table Component
- Detail Component
in user.html
<app-table>
<app-detail></app-detail>
</app-table>
in table.html
<div *ngFor="let item of items">
<ng-content [item]="item"></ng-content> (its my problem)
</div>