This might be a simple projection recipe, but I haven't been able to find the answer, the simple question is
I have a loop with an ng-content in it,
so lets say
custom-component
has this in its view file
<div *ngFor="let tiledata of TileData">
<ng-content></ng-content>
</div>
now if I want to access the single instance tiledata and pass it out to be used by the html in the component kind of like this
<custom-component>
{{tiledata.name}}
<br>
</custom-component>
so it should be shown like this
bob
tim
skip
so bottom line the tiledata of TileData would be available in the component content to allow you to write html to show the list
let me know if this makes sense,