какому компоненту вы передаете реквизиты:
<ng-container>
<app-component *ngFor="let item of itemsToLoopOver" [input]="item.text"></app-component>
</ng-container>
component1.ts
@Input() private textToShow: string;
component1.html
<div>
{{ textToShow }}
</div>