aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/need-list/need-list.component.html
blob: 6e48d9695e8cbcd0d25e8a9b59c890394db74f07 (plain) (blame)
1
2
3
4
5
6
<h1>Needs List</h1>
<li *ngFor="let need of needs">
    <a routerLink="/need/{{need.id}}">
        {{need.name}}
    </a>
</li>