I would like to use a component as an item.
Instead of using:
<ul class='biblList'>
<li *ngFor="let biblCit of biblCits">
{{ biblCit }}
</li>
</ul>
I would like to use something like:
<evt-bibliography-item *ngFor="let biblCit of biblCits">
{{ biblCit }}
</evt-bibliography-item>
Being a novice with angular I don't know how to figure it out.